评论

field放的位置引起的失效

数据库查询时,同时有where、skip,orderBy时,用field时必须要放到最后,不然field失效

刚开始学小程序,记一下遇到的小问题。数据库查询时,同时有where、skip,orderBy时,用field时必须要放到最后,不然field失效:

table.where({
typeNum: currentData
}).skip(0).limit(20).orderBy(‘indexNum’, ‘desc’).field({
id: true,
indexNum: true,
typeNum:true,
title: true,
precticeCount: true
}).get({
success(res) {
console.log(res.data)
}
});

点赞 0
收藏
评论

2 个评论

  • จุ๊บ木木木木掉线了👑
    จุ๊บ木木木木掉线了👑
    2019-02-21

    2019-02-21
    赞同
    回复
  • 烨
    2019-02-21

    B

    2019-02-21
    赞同
    回复 1
    • 疯狂的小辣椒
      疯狂的小辣椒
      2019-02-21

      你好,请友好发言哈,下次针对这种超大字体或者不友善的评论,我们会做删除处理

      2019-02-21
      1
      回复
登录 后发表内容