<button bindtap="cphm" style="margin-top: 400rpx;" CLASS="cu-btn block bg-blue shadow margin-tb-sm lg">车号</button> <text class="text-xxl">{{cphm}}</text> cphm(){ wx.chooseLicensePlate({ success:(e)=>{ console.log(e) this.setData({ cphm:e.plateNumber }) } }) },
请问wx.chooseLicensePlate这个api如何使用?可以弹出省份简称的输入键盘吗?用input绑定了一个bindinput事件,事件里调用了wx.chooseLicensePlate,返回的是 errMsg: "chooseLicensePlate:fail 开发者工具暂时不支持此 API 调试,请使用真机进行开发"。之后用手机真机调试报错wx.chooseLicensePlate is not a function。
2022-08-15