用于在Sailsjs蓝图中查找查询的修饰符

时间:2015-09-23 09:30:06

标签: node.js sails.js waterline

通过find where的Sailsjs Docs for Blueprints,我看到了以下段落:

  

您可以改为使用Waterline WHERE条件对象提供where参数,而不是基于特定属性进行过滤,编码为JSON字符串。这使您可以利用contains,startsWith和其他子属性条件修饰符来获得更强大的find()查询。

     

e.g。 ?其中= { “名称”:{ “包含”: “西奥多”}}

我在哪里可以找到其他子属性标准修饰符

1 个答案:

答案 0 :(得分:2)

我相信您想要的部分是查询语言Documentation Here

在那里,您将看到当前包含的所有各种标准修饰符:

'<' / 'lessThan'
'<=' / 'lessThanOrEqual'
'>' / 'greaterThan'
'>=' / 'greaterThanOrEqual'
'!' / 'not'
'like'
'contains'
'startsWith'
'endsWith'