2024-05-06 遇此BUG,查询未果,留,祝早倒
真机调试报错:error parsing call interface result?[图片]
05-06为什么到现在还有这个问题?说好的大厂呢?
button 通过type='chooseAvatar' 获取头像出错?[图片]2.30.4,2.30.3 两个基础库,获取头像都在报错 chooseAvatar:fail Cannot read property 'initScl' of undefined
05-06又不会了
GET_MESSAGE_TOKEN微信开发者工具出现 GET_MESSAGE_TOKEN[图片] 无法正常打开
2018-08-09bindChange for循环出来共用一个函数的话 e.detail.value指向就有问题了 我猜想是这样的 没有运行不知道真实情况
求助,for循环中获取循环里面的input的值我做了个优惠卷领取的页面,输入手机号的,点击领取的时候,把用户的手机号和优惠卷id传到后台,现在我获取不到用户输入的手机号了,求大神指教 <view class="container"> <block wx:for="{{images}}" > <view class="item" > <view class="viewimage"> <image class="slide-image" src="{{item.imgUrl}}"/> </view> <view class="inputArea"> <text class="textw">联系方式</text> <input id="userPhone{{item.id}}" class="inputw" bindinput="bindChange" placeholder="" type="number" value="{{userPhone}}"/> <button type="" data-conponid="{{item.id}}" bindtap="saveCoupon" class="lingqu">领取</button> </view> </view> </block> </view> js var mobile=""; bindChange:function(e,mobile){ mobile = e.detail.value; console.log(mobile) }, saveCoupon: function (e,mobile) { console.log(e) console.log(mobile); var that = this; console.log(that.data.userPhone) },
2018-07-06因为数据请求是异步的 然后这个方法已经执行了吧
o.functionName is not a functionlet data = []; .... this.findById = function(id) { return data.find((d, index, arr) => { return d.id == id; }); }; data在api请求中更新。有时候会报thirdScriptError,o.find is not a function. 'o.find' is undefined. 报这个错误时,通常是在网络请求更新data数据时。 但是。。。即便是在更新数据,原有的data数据还是在的,怎么会报这个错误呢? 求大神指点!!
2018-06-08