如何在sails js中检查值是否为空

x33g5p2x  于 2021-06-25  发布在  Mysql
关注(0)|答案(1)|浏览(383)

如何在使用水线的航行中检查值是否为空。我可以用mysql原生查询来实现这一点,但是由于某些原因我不想使用它。
我试过下面的代码,但它不工作。

var query = {
    Status: [1, 2, 3],
    Date: [null, '']
};
table.count(query).exec(function (err, count) {
    if (err) {
        return res.badRequest(err);
    }
    return res.send(count);
});

任何帮助都将不胜感激。

nle07wnf

nle07wnf1#

你必须使用或查询

var query = {
    Status : [1, 2, 3],
    or     : [
      { Date : null },
      { Date : '' },
    ],
};

相关问题