数据库查询结果后,再更新本条记录op字段,但是没有反应,也不提示错误。
db.collection('LDJY').where({
sqm: e.detail.value['sqm'] //表单数据
}).get().then(res => {
if (res.data.length == 1) {
db.collection('LDJY').doc(res.data[0]._id).update({
data: {
op:getApp().globalData.opid //op 更新为openid全局变量
}
})
.then(re => {
console.log(re)
})
.catch(eor => {
console.log(eor)
})
} else {
this.setData({
zt: "授权码错误"
})
}
})
学会打印日志