db.RegExp单属性查询结果为空,是异步问题么?新人求教
db.collection('Xuanjiang').where({
//title:'深圳证券交易所'
title: db.RegExp({
regexp: '.*'+this.data.value+'.*',
options: 'i'
})
}).get().then(res => {
console.log("搜索结果")
console.log(res);
if (res.data) {
this.setData({
serchlist: res.data
})
}
// }).get().then(res=>{
// console.log("搜索结果")
// console.log(res);
// if(res.data){
// this.setData({
// serchlist: res.data
// })
// }
});
用全字匹配查询时是有数据的,模糊查询就返回空数组。数据库权限给的是
求各位大佬帮忙看看