config:invalid signature ,這個(gè)錯(cuò)誤一般都是由于 url 傳遞不正確導(dǎo)致的
在 beforeRouteEnter 做操作
beforeRouteEnter(to, from, next) {
var u = navigator.userAgent;
var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios終端
// XXX: 修復(fù)iOS版微信HTML5 History兼容性問題
if (isiOS && to.path !== location.pathname) {
// 此處不可使用location.replace
location.assign(to.fullPath)
} else {
next()
}
},