我有两个不同的网址:
/getPosts
和
/getCommentsForPost?postId={id}
这些回应:
{
"post": {
"postId":1,
"title":"lorem ipsum"
}
}
和
{
"comment" : {
"commentId" : 123,
"text" : "lorem ipsum"
}
}
如您所见,评论对象没有 postId 属性。
这些是我的问题:
- 是否可以通过 RestKit 和 Core Data 在来自两个不同请求的响应之间创建实体关系?
- 我如何(以及何时)从我的第二个 url 中读取 postId 并将其设置在我的 Comment 模型中?