当keyPath与url查询参数时,Restkit响应描述符不起作用

时间:2015-04-10 02:49:36

标签: ios restkit

我有像api / v1.2 / comment这样的keyPath?pid =:pid& text =:text

然后我通过RestKit调用api方法

 RKObjectRequestOperation *operation = [self appropriateObjectRequestOperationWithObject:nil method:RKRequestMethodPOST path:path parameters:nil];
    operation.queuePriority = NSOperationQueuePriorityVeryHigh;
    [operation setCompletionBlockWithSuccess:success failure:failure];
    [self.objectManager enqueueObjectRequestOperation:operation];

将路径替换为完整的完整网址,如

http://localhost/api/v1.2/comment?pid=1&text=Testing

我还有路径api / v1.2 / comment的响应描述符?pid =:pid& text =:text

但是RestKit告诉我们找不到路径的响应描述符。

1 个答案:

答案 0 :(得分:0)

在当前版本的Restkit中(在编写本文时),查询参数不用于响应描述符匹配。从响应描述符的路径模式中删除它们。

如果您需要用于映射的查询参数,请使用@metadata。