作者:储兰兰快乐 | 来源:互联网 | 2023-09-17 10:34
vue 公众号项目
问题确定是出在使用微信jssdk微信支付,微信分享
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| const params = {
appId: this.$consts.APP_ID,
debug: false,
timestamp,
nonceStr: noncestr,
signature,
jsApiList: [
'chooseWXPay',
'hideMenuItems'
]
}
console.log('wxconfig信息(支付)', params)
wx.config(params)
wx.ready(() => {
console.log('wx.ready')
// 报错位置在这里
wx.hideMenuItems({ menuList: ['menuItem:copyUrl'] })
})
// 步骤五:通过 wx.error 接口处理失败验证
wx.error(err => console.log('wx.error: ', err)) |