我有两个不同的网址:
/getPosts
和
/getCommentsForPost?postId={id}
有了这些回复:
{
"post": {
"postId":1,
"title":"lorem ipsum"
}
}
和
{
"comment" : {
"commentId" : 123,
"text" : "lorem ipsum"
}
}
如您所见,comment对象没有postId属性。
这些是我的问题:
答案 0 :(得分:1)
你的生活更加艰难,因为id是一个查询参数,而不是更多RESTful的URL路径的一部分。您可能需要让RestKit映射URL或URL查询(@metadata.HTTP.request.URL.query
),然后使用一个transient属性从该数据中读取相应的信息。