微信jssdk图片上传 ios不支持

 ios不支持是因为路由跳转的时候指向的是上一个页面的路由

所以在需要上传图片的路由里面加入一下代码:

beforeEnter:(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)