-- 作者:有点甜
-- 发布时间:2017/10/30 16:03:00
--
在调用成功的后面继续执行你的函数
wx.ready(function () { document.getElementById(\'scan\').onclick = function () { wx.scanQRCode({ needResult: 1, scanType: [\'qrCode\',\'barCode\'], success: function (res) { document.getElementById(\'number\').value = res.resultStr;
//这里继续写查询代码 } }); }; });
|