0
我有兩個不同的URL:Restkit實體關係PARAMS
/getPosts
和
/getCommentsForPost?postId={id}
這些對策:
{
"post": {
"postId":1,
"title":"lorem ipsum"
}
}
和
{
"comment" : {
"commentId" : 123,
"text" : "lorem ipsum"
}
}
如您所見,註釋對象沒有postId屬性。
而這些是我的問題:
- 是否有可能通過RestKit和核心數據,以創建兩個不同的請求的響應之間的實體關係?
- 如何(以及何時)可以從我的第二個網址讀取postId並將其設置在我的評論模型中?