LoopBack过滤器"其中和"在任何值中返回错误/相同的结果

时间:2018-01-29 08:32:05

标签: node.js rest loopbackjs strongloop

这是环回文档中关于使用and运算符

的内容

休息: ?filter[where][and][0][title]=My%20Post&filter[where][and][1][content]=Hello

我试过了:

count?filter{"where":[{"and"}[{"user_id":"5a6840ddb2b58b07cca3c680"},{"post_id":"4444"}]} //post_id:4444 is not exit

count?filter[where][and][0][user_id]="5a6840ddb2b58b07cca3c680"&filter[where][and][1][post_id]="5a6253bdcf975122dcf11dd8"

和许多其他形式 但结果是count: 12但是应该在4444中返回0或者任何错误的post_id。 另外,post_id和user_id是关系Objectid。

1 个答案:

答案 0 :(得分:1)

删除过滤器,然后使用where。 (感谢Raymond Feng帮我解决这个问题。)