在微信小程序云开发控制台里面输入 数据库get语句报如下错误
代码如下:
db.collection('hello').where({
recommand_time: "444",
})
.get({
success(res) {
console.log('[数据库] [查询记录] 成功', err);
},
})
报错如下:
执行失败,耗时 442ms
SyntaxError: FunctionExpression is not supported (from line 5, col 14 to line 7, col 8)
3 | })
4 | .get({
> 5 | success(res) {
| ^^^^^^^
> 6 | console.log('[数据库] [查询记录] 成功', err);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7 | },
| ^^^^^^^^
参考一下:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/dbscript.html 。