Restheart |在数组中过滤

时间:2017-01-16 10:35:42

标签: mongodb rest restheart

如果使用Restheart

存在数据子集(数组中的数据),如何过滤文档

这是一个示例JSON

{
    "_id" : ObjectId("58760e53a4c0a73900472eb0"),
    "foods" : [ 
        "root vegetables", 
        "yogurt", 
        "other vegetables"
    ],
    "prices" : [ 
        "$1",
        "$23",
        "$21",
    ],
    "market_ratio" : 0.606299212598425
}

例如,我希望获得包含```yogurt

foods的所有文档

我尝试了?filter={'foods':['yogurt']}&sort_by=+market_ratio",但它没有返回任何内容。

1 个答案:

答案 0 :(得分:0)

正确的方法:

?filter={'foods':{$in:"[yogurt, curd]"}}