获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- collocation update 调用成功,但数据没变?
toExamine(e) { wx.showLoading({ title: '加载中', }) const { item: { _id }, name } = e.currentTarget.dataset; const _openid =wx.getStorageSync('openid') console.log(_openid) db.collection('orderReceive').doc(_id).update({ data: { state: name, examinePerson:_openid }, success: (res) => { console.log('成功') this.onLoad(); wx.hideLoading(); } }) }, [图片]
2022-09-27 - wx.getStorageSync取值不带‘’怎么办?
<view wx:if="{{ item._openid === wx.getStorageSync('openid')}}" > item._openid ===‘xxxxxxx’ wx.getStorageSync('openid')===xxxxxxx 这种情况怎么办
2022-09-27 - 使用where collection get获得的数组中的指定元素如何获取?
[图片][图片]比如在这个案例中我想打印数组0内的_id该如何实现
2022-09-22