在 RESTkit 中为 JSON 数组中的对象指定特定映射?
当我请求 UserProfile 对象列表时,我从 django-rest-framework 收到此 JSON:
[
{
"gender": 1,
"show_gender": true,
"show_real_name": true
},
{
"gender": 2,
"show_gender": true,
"show_real_name": true
}
]
但我不知道如何使用 Restkit 配置我的映射。 Restkit 似乎需要一个 字典而不是列表,因为它似乎使用字典的键作为“KeyPath”来标识必要的映射。有没有办法手动指定接收对象的映射?
I'm receiving this JSON from django-rest-framework
when I request a list of UserProfile objects:
[
{
"gender": 1,
"show_gender": true,
"show_real_name": true
},
{
"gender": 2,
"show_gender": true,
"show_real_name": true
}
]
But I'm at loss how to configure my mappings with Restkit. Restkit seems to expect a dictionary instead of a list, since it seems to use the dictionary's keys as "KeyPath" to identify the necessary mappings. Is there a way to specify a mapping for the received objects manually?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道了!
Got it!