http://www.foxtable.com/mobilehelp/topics/0247.htm
按以上指南,把开发者ID更改,其它没变,无法调用扫码,请问以上代码还有其它地方要更改吗?
(公众号平台已设置好,其它接口在正常中使用,只是现在要增加扫码输入功能)
其中,以下js中,当点击扫码输入时是可以弹出9的
wx.ready(function () {
document.getElementById('scan').onclick = function () {
alert(9)
wx.scanQRCode({
needResult: 0,
scanType: ['qrCode','barCode'],
success: function (res) {
document.getElementById('number').value = res.resultStr;
}
});
};
});
wx.error(function (res) {
//alert(res.errMsg);
});
但如果把alert(9)放到下一行就没反应,如下:
wx.ready(function () {
document.getElementById('scan').onclick = function () {
wx.scanQRCode({
alert(9)
needResult: 0,
scanType: ['qrCode','barCode'],
success: function (res) {
document.getElementById('number').value = res.resultStr;
}
});
};
});
wx.error(function (res) {
//alert(res.errMsg);
});
[此贴子已经被作者于2020/4/13 17:54:00编辑过]