2

これが私のルーティング設定です:

[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 'PrivateUserProfile', provider returned one for 'UserProfileAndStatistics'

PrivateUserProfile現在、とのマッピングUserProfileAndStatisticsは非常に似ています

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",
 @"Posts"          :   @"posts",
 @"Followers"      :   @"followers",
 @"Following"      :   @"following"
 }];

しかし、なぜRestKitはどちらか一方を選択するのでしょうか。これを正常にデバッグするにはどうすればよいですか?RKRouteとRKObjectMappingの間に関係はありますか?PrivateUserProfileのマッピングはシリアル化ステップで使用されていますが、対応する逆シリアル化に使用されないのはなぜですか。また、どのように使用するのですか?

4

1 に答える 1

4

ここには2つの応答記述子が必要です。1つ/api/v1/privateprofile/はクラスのパスをPrivateUserProfile持ち、もう1つは/api/v1/profile/:userIdクラスのパスを持ちますUserProfileAndStatistics

[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)]
 ]];
于 2013-01-07T22:33:24.203 に答える