在sails.js(0.10.5)中使用waterline.js:
我想在where选项对象中创建一个'where'字符串。例如,我有:
where = {
updatedAt:{">":"2015-01-08T10:00:00.000Z","<=":"2015-01-08T20:00:00.000Z"}
};
我希望有一个生成的字符串(类似于):
"WHERE updatedAt > '2015-01-08T10:00:00.000Z' AND updatedAt <= '2015-01-08T20:00:00.000Z'"
这可能吗?我觉得它应该是......
答案 0 :(得分:0)
您可以使用比较运算符进行日期范围查询。
Model.find({ date: { '>': new Date('2/4/2014'), '<': new Date('2/7/2014') } })