//教程代码,报错SyntaxError: FunctionExpression is not supported
db.collection('User').where({name:'123'}).get({
success: function(res) {
// res.data 包含该记录的数据
console.log(res.data)
}
})
//执行成功的代码
db.collection('User')
.where({
name: '123'
})
.field({
name: true,
})
.limit(10)
.get()
不知道