所以我在AngularJs应用程序中工作,该应用程序连接到Kinvey后端。 www.kinvey.com
在Kinvey,我们可以获取一个实体及其关系:
var promise = $kinvey.DataStore.get('events', 'event-id', {
relations : { location: 'locations' }
});
http://devcenter.kinvey.com/angular/guides/datastore#JoiningOperators
关系数据/提取
以上实际上是从事件集合中获取事件实体,它还获取与其关联的位置的数据(在不同的集合中),到目前为止我们能够检索到实体及其相关实体......
现在我该如何检索这些位置的关联? 换句话说,我如何检索嵌套关联?
感谢。
答案 0 :(得分:0)
像这样:
$kinvey.DataStore.find('collection1', null, {
relations: {
name: "collection2",
"name.name": "collection3"
}
});
https://support.kinvey.com/discussion/201272198/nested-relations