在调用成功的后面继续执行你的函数
wx.ready(function () { document.getElementById('scan').onclick = function () { wx.scanQRCode({ needResult: 1, scanType: ['qrCode','barCode'], success: function (res) { document.getElementById('number').value = res.resultStr;
//这里继续写查询代码 } }); };});