收藏
回答

用云函数获取云数据库记录的某几个字段,在field填写需要的字段吗?

else if (event.a == 51) //使用了,没有登录时,单身广场显示

        {

          try {

            return await db.collection('singleinfo').where({

           

            }).field({

              

            }).orderBy('lasttime', 'desc')

            .skip(8)  

            .get()

        } catch (e) {

            console.log(e)

        }

        }

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

1 个回答

  • 彭为伟
    彭为伟
    2022-12-03

    不想要记得的所有字段信息,只需要部分字段,怎么处理呢?

    2022-12-03
    有用
    回复 1
    • 彭为伟
      彭为伟
      2022-12-03
      field({
        description: true,
        done: true,
        progress: true
      })
      2022-12-03
      1
      回复
登录 后发表内容