我正在使用RESTKit执行GET请求,并且不推荐使用我的RKResponseDescriptor。我知道这是因为我没有方法参数,但我不知道我会为方法参数添加什么。这是我目前的代码:
RKResponseDescriptor *nameResponseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:nameMapping
//I don't know what would go here under method
method:(RKRequestMethod)method
pathPattern:@"/projects/20090611/providers/find"
keyPath:@"providers"
statusCodes:statusCodeSet];
答案 0 :(得分:3)
很简单,您将参数设置为RKRequestMethodGET
,因为它是在发出GET请求时使用的响应描述符。