mounted() {
this.$http
.get('/.../.../getSignature')
.then(({ data: res }) => {
if (res.code !== 0) {
Toast({
type: 'fail',
duration: this.$tipTime,
message: res.msg
})
return
}
wx.config({
beta: true, // 必须这么写,否则wx.invoke调用形式的jsapi会有问题
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端弹出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: res.data.appid, // 必填,公众号的唯一标识
timestamp: res.data.timestamp, // 必填,生成签名的时间戳
nonceStr: res.data.noncestr, // 必填,生成签名的随机串
signature: res.data.signature, // 必填,签名,见附录1
jsApiList: ['scanQRCode'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
})
wx.ready(function() {
alert('ready接口处理成功')
})
wx.error(function() {
alert('ready接口处理失败')
})
})
.catch(() => {})
},
methods: {
// 扫码签到
smqdFun() {
alert('进入扫码方法')
wx.scanQRCode({
desc: 'scanQRCode desc',
needResult: 1, // 默认为0,扫描结果由企业微信处理,1则直接返回扫描结果,
scanType: ['qrCode'], // 可以指定扫二维码还是条形码(一维码),默认二者都有
success: function(res) {
alert('进入扫码页面成功')
alert(JSON.stringify(res))
// 回调
},
error: function(res) {
alert('进入扫码页面失败')
if (res.errMsg.indexOf('function_not_exist') > 0) {
alert('版本过低请升级')
}
}
})
},
}
后台返回的参数
企业微信的报错:
解决了吗?
我觉得你的配置参数应该是生成有误