查询云数据库中的记录
我添加了一个input模块,想要根据input的value来查询云数据库中的记录,核心代码块如下,但是始终得不到我想要的结果,我猜想是不是两个function的第三行有问题?
data: {
msg:'输入要查询的员工工号:',
userInputID:null
},
/**
*input获取函数--
*/
userinput:function(e){
this.setData({
userInputID:e.detail.value
})
},
/**
* 查询按钮点击函数--点击效果
*/
search:function(){
db.collection('user').where({
userid:this.data.userInputID
}).get().then(res=>{
console.log(res)
}).catch(err=>{
console.log(err)
})
},