小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.scanQRCode微信8.0.28版本。调起微信扫一扫后一直扫码没有反应
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
debug: true, // 开启调试模式,调用的所有 api 的返回值会在客户端 alert 出来,若要查看传入的参数,可以在 pc 端打开,参数信息会通过 log 打出,仅在 pc 端时才会打印。
appId: 'wx0af65af831d9f16e', // 必填,公众号的唯一标识
timestamp: res.dataList.timestamp, // 必填,生成签名的时间戳
nonceStr: res.dataList.nonceStr, // 必填,生成签名的随机串
signature: res.dataList.signature, // 必填,签名
jsApiList: ['scanQRCode'] // 必填,需要使用的 JS 接口列表
});
},
redeemFn() {
wx.ready(function() {
needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
scanType: ["qrCode", "barCode", "datamatrix"], // 可以指定扫二维码还是一维码,默认二者都有
success: function(res) {
var result = res.resultStr; // 当needResult 为 1 时,扫码返回的结果
alert(result)
alert(JSON.stringify(result))
console.log(result)
this.h5CashPrize()
},
fail: function(res) {
alert(res)
console.log(res)
}
});
},