3

我正在用 restkit 0.2 敲打我的头并发布对象。我正在尝试使用映射的 requestDescriptor 发布一个对象,但在我的请求中总是得到一个 request.body=(null) 。我目前完全陷入困境。

我正在使用以下代码进行映射

// Construct a request mapping for our class
RKObjectMapping *requestMapping = [RKObjectMapping requestMapping];
[requestMapping addAttributeMappingsFromDictionary:@{
 @"command": @"requestedCommand" ,
 @"payload": @"payloadForCommand"
 }];
RKRequestDescriptor *requestDescriptor = [RKRequestDescriptor requestDescriptorWithMapping:requestMapping objectClass:[ShoppingListAPI class] rootKeyPath:nil];
[manager addRequestDescriptor:requestDescriptor];

// create the object
ShoppingListAPI *shoppingListRequest = [[ShoppingListAPI alloc] init];
shoppingListRequest.payload = payload;
shoppingListRequest.command = @"getShoppingLists";

并尝试发布它

[manager postObject:shoppingListRequest
                                path:@"shoppinglistWebservice.html"
                                parameters:nil
                                 success:^(RKObjectRequestOperation *operation, RKMappingResult *result) {
                                            DLog(@"We object mapped the response with the following result: %@", result);
                                    }
                                failure:^(RKObjectRequestOperation *operation, NSError *error) {
                                        DLog(@"Hit error: %@", error);

                                }];

从日志中我得到以下信息

T restkit.network:RKHTTPRequestOperation.m:150 POST 'http://www.myhost.com/shoppinglistWebservice.html': 
request.headers={
Accept = "application/json";
"Accept-Language" = "de, en, fr, ja, nl, it, es, pt, pt-PT, da, fi, nb, sv, ko, zh-Hans, zh-Hant, ru, pl, tr, uk, ar, hr, cs, el, he, ro, sk, th, id, ms, en-GB, ca, hu, vi, en-us;q=0.8";
"Content-Type" = "text/html; charset=utf-8";
"User-Agent" = "myapp/1.0 (iPhone Simulator; iOS 6.0; Scale/2.00)";
}
request.body=(null)

我按照 RKObjectManager.h 中的示例实现没有成功。request.body 保持为空。它不应该将我的对象显示为 JSON 字符串吗?映射工作正常,即

Mapped attribute value from keyPath 'command' to 'requestedCommand'. Value: getShoppingLists

有任何想法吗?

4

2 回答 2

1
RKRequestDescriptor *reqDescriptor = [RKRequestDescriptor requestDescriptorWithMapping:mapping objectClass:objectClass rootKeyPath:path];
[objectManager addRequestDescriptor:reqDescriptor];

用于映射[mapping inverseMapping]

对于对象类[Someclass class]。路径大多可以为零。

于 2013-06-24T13:56:39.860 回答
1

I don't know if you managed to solve this, but I finally worked out why I was unable to post - it was very frustrating:

I needed to add this:

objectManager.requestSerializationMIMEType=RKMIMETypeJSON; 

to get the request to post as JSON.

Problem solved from that point on. Can't work out why this isn't a more widespread answer

于 2014-08-23T11:25:21.807 回答