作者:撒哈拉2011的马甲_978 | 来源:互联网 | 2023-09-14 17:16
解决思路:1、第一次调用jsapi分享时,window.location.href被自动带上“fromsinglemessage&isappinstalled0”。wx.confi
解决思路:
1、第一次调用jsapi分享时,window.location.href被自动带上“from=singlemessage&isappinstalled=0”。wx.config会一直显示失败,无效的签名invaild signature。可能是微信认证不支持带有“from=singlemessage&isappinstalled=0”
2.router.afterEach(function(to,from,next) {
var href = 域名 + to.fullPath
//分享jsapi写在这边
}
3.传换成不带那组参数的链接就可以签名通过,并且分享成功