- scanCode返回fail?
windows系统,开发者工具版本:Stable 1.06.2307260,scanCode返回fail分支,真机调试可以返回success,会是什么原因? scanCode: function () { var that = this setTimeout(()=>{ wx.scanCode({ success: async(res) => { console.info(res.result); console.log(res); var res1 = res.result; var obj_json = JSON.parse(res.result); console.info(obj_json); //var ress = this.base64_decode(res.rawData); //console.log(ress); that.setData({ result: obj_json.param2, tel: obj_json.param1, _id: obj_json.param2, scanType: res.scanType, isDisabled: false }); /*wx.showToast({ icon: 'none', title: res.rawData, duration: 2000 })*/ }, fail: function (e) { console.info('3.' + e.errMsg) console.info(e) wx.showModal({ title: '警告', content: '券码识别失败,请重试!', complete: (res) => { that.setData({ inputFocus: true }); } }) } }) },500) }, [图片]
2023-08-29 - 仿建行圆形菜单绑定点击事件,获取不到对应菜单内容
最近学习仿建行圆形菜单,在绑定菜单的点击事件上遇到了问题。本身圆形菜单是通过xw:for获取数组中的内容生成的,然后通过 style="-webkit-transform: rotate({{item.deg}}deg) 对view进行旋转,形成了圆形菜单,但是通过 <view class="menu-item" wx:for="{{menuList}}" wx:key="{{item.index}}" animation="{{animationData}}" bindtap='selectMenu' data-index="{{index}}"> 绑定点击事件后,不管点击了哪个菜单,后台获取到的总是数组中的最后一个元素内容。
2018-08-14