使用云数据库查询的get方法,打印不出数据,只显示是个对象?
db.collection('test_user_list').where({
'_openid': "151"
}).get({
success(e){
console.log("shuju" + e) //结果为一个对象
}
})
我换一种方式用.then的结果为
为什么get里面的succee不行,拿的数据是一个对象?不应该是具体的数据吗