vue 路由 histroy 模式 微信jssdk 签名错误

config:invalid signature ,这个错误一般都是由于 url 传递不正确导致的

在 beforeRouteEnter 做操作

beforeRouteEnter(to, from, next) {
        var u = navigator.userAgent;
        var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
        // XXX: 修复iOS版微信HTML5 History兼容性问题
        if (isiOS && to.path !== location.pathname) {
        // 此处不可使用location.replace
            location.assign(to.fullPath)
        } else {
            next()
        }
   },

你可能感兴趣的:(vue 路由 histroy 模式 微信jssdk 签名错误)