vue2项目window.open打开一个新窗口刷新总回到首页(重定向页面)

问题描述:
使用window.open打开新窗口跳转本系统的某一个页面
如: http://192.168.1.206:9529/#/previewScreen?idx=1653966398075965442
刷新总是回到首页

找了很久也没找到解决办法。
最后曲线救国:
将路由模式更改为history模式,该问题不再出现。
注意history模式需要配置
ngnix,
,如下

location / {
			root D:\dist;
			index  index.html index.htm;
			try_files $uri $uri/ /index.html;
			
		}
		location @router {
            rewrite ^.*$ /index.html last;
        }

否则刷新出现404的问题
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/Pure_White520/article/details/131403297