我有一项服务 REST/JSON。看起来像:
@GET
@Produces(MediaType.TEXT_PLAIN)
@Path("/login/{userName}/{password}")
public synchronized String login(@PathParam("userName") String userName,
@PathParam("password") String password);
如何在 IOS 中使用 RestKit 使用它?
我有一项服务 REST/JSON。看起来像:
@GET
@Produces(MediaType.TEXT_PLAIN)
@Path("/login/{userName}/{password}")
public synchronized String login(@PathParam("userName") String userName,
@PathParam("password") String password);
如何在 IOS 中使用 RestKit 使用它?
很明显,为了发送规范的 restkit 请求,您应该有实体、映射等。文档提供了如何做到这一点的明确答案。
我还可以建议您使用简单的方法:
[[RKObjectManager sharedManager].HTTPClient postPath:@"your URL string" parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"WHOOO");
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
//
}];
responseObject
是你需要的。