• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - RestKit:POST 反序列化 - 期望 A 类的对象映射,提供者为 B 返回一个

[复制链接]
菜鸟教程小白 发表于 2022-12-13 00:22:45 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

这是我的路由设置:

[manager.router.routeSet addRoute:[RKRoute routeWithClass:[UserProfile class]  pathPattern"/api/v1/users" method:RKRequestMethodPOST]];
[manager.router.routeSet addRoute:[RKRoute routeWithClass:[UserProfileAndStatistics class]  pathPattern"/api/v1/profile/:userId" method:RKRequestMethodGET]];
[manager.router.routeSet addRoute:[RKRoute routeWithClass:[PrivateUserProfile class] pathPattern"/api/v1/privateprofile/" method:RKRequestMethodGET]];
[manager.router.routeSet addRoute:[RKRoute routeWithClass:[PrivateUserProfile class] pathPattern"/api/v1/privateprofile/" method:RKRequestMethodPOST]];

这是我注册映射的方式:

    RKResponseDescriptor *responseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:mapping pathPattern:nil keyPath:nil statusCodes:nil];
    [[RKObjectManager sharedManager] addResponseDescriptor:responseDescriptor];

    //the serialisation step
    RKRequestDescriptor *requestDescriptor = [RKRequestDescriptor requestDescriptorWithMapping:[mapping inverseMapping] objectClass:[mapping objectClass] rootKeyPath:nil];
    [[RKObjectManager sharedManager] addRequestDescriptor:requestDescriptor];

最后我打电话:

[[RKObjectManager sharedManager] postObject:userProfile path:nil parameters:nil success:^(RKObjectRequestOperation *operation, RKMappingResult *result) { ... }

正确发布后,我得到一个 HTTP 状态代码 200,并且数据进入服务器。这意味着序列化步骤正在工作。当响应回来时,我得到一个错误:

Adding mapping error: Expected an object mapping for class of type 'rivateUserProfile', provider returned one for 'UserProfileAndStatistics'

现在 PrivateUserProfileUserProfileAndStatistics 的映射非常相似

RKObjectMapping *mapping = [RKObjectMapping mappingForClass:[PrivateUserProfile class]];
[mapping addAttributeMappingsFromDictionary{
 @"UserIdentifier" :   @"userId",
 @"UserName"       :   @"userName",
 @"Name"           :   @"name",
 @"Email"          :   @"emailAddress",
 @"Bio"            :   @"bio",
 @"Website"        :   @"webSite",
 @"Avatar"         :   @"avatar"
 }];

RKObjectMapping *mapping = [RKObjectMapping mappingForClass:[UserProfileAndStatistics class]];
[mapping addAttributeMappingsFromDictionary{
 @"UserIdentifier" :   @"userId",
 @"UserName"       :   @"userName",
 @"Name"           :   @"name",
 @"Bio"            :   @"bio",
 @"Website"        :   @"webSite",
 @"Avatar"         :   @"avatar",
 @"osts"          :   @"posts",
 @"Followers"      :   @"followers",
 @"Following"      :   @"following"
 }];

但是为什么 RestKit 会选择其中一个呢?如何成功调试? RKRoute 和 RKObjectMapping 有没有关系。 PrivateUserProfile 的映射被用于序列化步骤,那么为什么不将它用于对应的反序列化,以及如何使用它?



Best Answer-推荐答案


您需要两个响应描述符 - 一个带有路径 /api/v1/privateprofile/ 用于类 PrivateUserProfile,另一个带有路径 /api/v1/UserProfileAndStatistics 类的 profile/:userId:

[manager addResponseDescriptorsFromArray[

 [RKResponseDescriptor responseDescriptorWithMapping:privateUserProfileMapping
                                         pathPattern"/api/v1/privateprofile/"
                                             keyPath:nil
                                         statusCodes:RKStatusCodeIndexSetForClass(RKStatusCodeClassSuccessful)],
 [RKResponseDescriptor responseDescriptorWithMapping:userProfileAndStatisticsMapping
                                         pathPattern"/api/v1/profile/:userId"
                                             keyPath:nil
                                         statusCodes:RKStatusCodeIndexSetForClass(RKStatusCodeClassSuccessful)]
 ]];

关于ios - RestKitOST 反序列化 - 期望 A 类的对象映射,提供者为 B 返回一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14205205/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap