这是环回文档中关于使用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。
答案 0 :(得分:1)
删除过滤器,然后使用where。 (感谢Raymond Feng帮我解决这个问题。)