微信扫一扫二维码跳转指定的页面,而指定的页面获取二维码的url包括参数
在指定的页面.js 我们先以index来为列子吧
index.js
onLoad: function(options) {
console.log(options); //假如从微信扫一扫二维码跳转index页面会在这里打印二维码的url
console.log(options.q); //这是二维码的url 啦
}
微信小程序点击按钮调用扫一扫
index.wxml
<button data-type='ORCode' bindtap='scanDevice'>扫一扫开锁</button>
index.js
scanDevice: function() {
let that = this;
wx.scanCode({
success: (res) => {
console.log("====获得设备二维码成功====");
console.log(res.result)
}
});
},
微信小程序文档: