赞
踩
//wxml文件
<view>
<button bindtap="handleScan">扫描二维码</button>
<text>{{scanCodeResult}}</text>
</view>
//js文件 Page({ data: { scanCodeResult: '' }, handleScan: function() { var that = this; wx.scanCode({ success: function(res) { // 将扫码结果保存到data中 that.setData({ scanCodeResult: res.result }); } }) } })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。