2

RKObjectManager文档展示了如何构建这个路由

[manager.router.routeSet addRoute:[RKRoute routeWithName:@"follow_user" pathPattern:@"/users/:userID/follow" method:RKRequestMethodPOST]];
  • 我需要先发出请求才能设置一些标头。
  • 我需要提供我要发布的对象。
  • 我需要指定一个字典,其中包含要在路由的路径模式中匹配的用户 ID

如何发出 url 请求以使用该路由发布对象?

编辑:

requestWithPathForRouteNamed:object:parameters: 不允许我提供要发布的对象。requestWithObject:method:path:parameters: 不允许我提供包含要在路由的路径模式中匹配的 userID 的字典字典

实际上我需要类似的东西:

- (NSMutableURLRequest *) requestWithObject:(id)objectToSend
                              forRouteNamed:(NSString *)routeName
                            routeParameters:(NSDictionary *)routeParameters;
4

1 回答 1