收藏
回答

where 一个字段不为null 或'' ,要怎么写?

这个字段有时是null,有时是" "

where 应该要怎么写?

 let _ = db.command;

    todo.where({

      imageshow: _.neq(null),

        imageshow: _.neq('')

     }).orderBy('timeshow', 'desc').limit(5).get

这样写不起作用


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

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2021-05-18

    用or呗

    2021-05-18
    有用 1
    回复 1
    • candywlx
      candywlx
      2021-05-18
      谢谢,用  imageshow: _.and(_.neq(null), _.neq(""))   解决了
      2021-05-18
      回复
登录 后发表内容