方法一
afterEach(to, from) {
const u = navigator.userAgent.toLowerCase()
if (u.indexOf('like mac os x') < 0 || u.match(/WebP/i) === 'webp') return
if (to.path !== global.location.pathname) {
location.assign(to.fullPath)
}
}
方法二
beforeEach(to, from, next) {
next()
var replaceUrl = window.location.href.split('#')[0] + '#' + to.path;
var index = 0; // 索引初始化
// 給replaceUrl拼接參數(shù)
for (var i in to.query) {
// 判斷是否等于第一個(gè)參數(shù)
if (index === 0) {
// 拼接地址第一個(gè)參數(shù)递递,添加“?”號(hào)
replaceUrl += '?' + i + '=' + to.query[i]
} else {
// 拼接地址非第一個(gè)參數(shù),添加“&”號(hào)
replaceUrl += '&' + i + '=' + to.query[i]
}
index++; // 索引++
}
window.location.replace(replaceUrl); // 重定向跳轉(zhuǎn)
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者