解决微信公众号开发中IOS分享无效

在开发微信公众号的时候,有些页面要做分享功能,但是调取微信的JDK来分享,IOS没有效果,可以这样解决

beforeRouteEnter (to, from, next) {
      next(vm => {
        if (!window.localStorage.getItem('isReload')) {
          window.localStorage.setItem('isReload', window.location.href)
          // 微信分享需要重新设置URL
          window.location.href = window.location.href
        }
      })
    }

你可能感兴趣的:(javascript,vue.js,微信公众平台)