收藏
回答

JS-SDK的wx.config在某些i Phone手机上验证失败,请教高手?

按照官方文档配置H5页面转发,在某些iPhone手机上总是提示{"errMsg":"config:fail"}。

因为工程用的是 vue router 的 history 模式,根据一些帖子的解决办法,用全局变量保存了进入时的URL

if (global.entryUrl === 'undefined' || global.entryUrl === '') {
  global.entryUrl = window.location.href.split('#')[0];
}


 let config = Object.assign({
    debug: true,
    jsApiList: ['updateAppMessageShareData', 'updateTimelineShareData']
  }, {
    appId: ret.appid, //公众号的唯一标识
    timestamp: ret.timestamp, //接口返回签名的时间戳
    nonceStr: ret.noncestr, //接口返回签名的随机串
    signature: ret.signature //接口返回签名
  })
  wx.config(config)


一些机器上已经好了,但在iOS系统是17.7.1的机器上还是不行,JSSDK版本是最新的1.6.0。

请问有没有高手帮忙解惑一下

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容