scan-code.js 256 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 Page({ data: { result: '' }, scanCode: function () { var that = this wx.scanCode({ success: function (res) { that.setData({ result: res.result }) }, fail: function (res) { } }) } })