0
我已成功將JSON響應從Parse映射到我的核心數據實體Message
,該實體與Conversation
實體具有一對一的關係。投遞解析,關係應該具有以下格式:RKObjectMapping轉換對象POST/PUT
{
"conversation": {
"className": "Conversation",
"objectId": "MK2GbaBseP",
"__type": "Pointer"
}
}
所以我需要在覈心數據的Conversation
實體序列化到這個自定義JSON。作爲RestKit序列化過程的一部分,我可以添加這些額外字段嗎?
RKObjectMapping *messageRequestMapping = [RKObjectMapping requestMapping];
... some custom serialisation code
[manager addRequestDescriptor:[RKRequestDescriptor requestDescriptorWithMapping: messageRequestMapping objectClass:PPSMessage.class rootKeyPath:nil method:RKRequestMethodAny]];
我已經嘗試了將嵌套的對象創建RKValueTransformer
子類,但它似乎沒有被調用。
任何幫助表示讚賞。
謝謝,Wain。我選擇了2。 – Alex