收藏
回答

为何数据库读取按照教程写执行不了?

//教程代码,报错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()

回答关注问题邀请回答
收藏

1 个回答

  • 萝卜的卜
    萝卜的卜
    发表于小程序端
    2023-02-13

    不知道

    2023-02-13
    有用
    回复
登录 后发表内容