1. 小程序
在小程序中調起客戶端掃碼界面的接口是 wx.scanCode(Object object)
*注意回調函數(shù)中的this指向
let _this = this;
wx.scanCode({
success (res) {
console.log(res)
_this.setData({
scanResult: res.result
})
}
})
2.企業(yè)微信
企業(yè)微信中調起客戶端掃一掃能力的接口是wx.scanQRCode(Object object)望几,雖然接口名稱是二維碼绩脆,但同時支持一維碼和二維碼。
wx.scanQRCode({
desc: '',
needResult: 0,//默認0,0-返回結果由企業(yè)微信處理靴迫,只顯示二維碼內容惕味;1-直接返回結果,包括二維碼內容和接口調用的成功失敗信息
success: function(res){ //僅needResult為1時有效
console.log(res)
},
error: function(res){ //僅needResult為1時有效
}
})