Parse.com:查询数组集合中的对象项

时间:2016-04-15 07:31:28

标签: javascript rest parse-platform querying

让我们说我有一个Parse课程" Pages"列#34;索引"和包含以下索引值的行:

{
    "date": "2016-05-14",
    "tags": [
        {
            "score": 12,
            "name": "Taekwondo"
        }, {
            "score": 15,
            "name": "Jazz"
        }, {
            "score": 22,
            "name": "Yoga"
        }, {
            "score": 8,
            "name": "Meditation"
        }
    ]
}

何我会使用名为" Jazz"的标签查询结果使用REST API和curl? 在parse.com REST API文档中,没有关于查询对象数组中的对象字段的信息。

在一个mongodb中有$ elemMatch的概念,但显然parse.com层不支持它?

db.index.Pages.find({ 
    index: {
        tags: { 
            $elemMatch: { name: 'Jazz' }
        }          
    }  
});

0 个答案:

没有答案