收藏
回答

服务端http查询db, 使用orderBy报错

通过接口查询数据:

POST https://api.weixin.qq.com/tcb/databasequery?access_token=ACCESS_TOKEN


请求:

Array
(
    [query] => db.collection('user').where({coin: db.command.gt(150)}).field({_id: true,coin: true,point: true,nickName: true,}).orderBy('coin','desc').orderBy('point','asc').skip(0).limit(10).get()
)


返回:

Array
(
    [errcode] => 0
    [errmsg] => Query sort entered in the request is illegal. Please check your request, but if the problem persists, contact us. hint: [0NFxHa04442028]
)


移除orderBy之后可以正常返回查询数据,orderBy的字段也在集合中

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

2 个回答

  • 寂
    2019-05-21

    抱歉这个不懂,请到 “云开发” 板块发帖咨询谢谢。

    2019-05-21
    有用
    回复
  • 雄
    2019-05-21

    遇到同样问题,求解~


    2019-05-21
    有用
    回复
登录 后发表内容