获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
不知道
为何数据库读取按照教程写执行不了?//教程代码,报错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()
2023-02-13