0
路由配置:
const router = new VueRouter({ history: true, saveScrollPosition: true, root: '/mp' });
使用router.go跳转,wechat不回刷新页面,地址栏的query是发生变化的:
self.$route.router.go({ name: 'orders', query: { content: res.resultStr, } })
使用window.location.href直接跳转的话wechat会刷新页面:
let url = 'http://xxxxxx'; window.location.href = url;
我在router.go里是不是少写了什么参数?