目的是为了查询云数据库中字段type值为1的数据组
onLoad: function () {
console.log(bookmsg);
var that = this;allbookmsg.where({
type: _.eq(1)
}).get({
success: res =>{
console.log(res);
}
}) },
实际上也确实有这样的数据在云数据库中
但实际console打印res的结果却是请教大佬们这是为何
where({type:"1"}).get
不用eq,你这个是String型的数据,传入字符串值
如果还是无结果,检查数据库表的权限设置,设置所有可读
数据库权限的问题吧
所有用户可读么?