- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个RKResponseDescriptor来吸引人们参加 session 。
我有一个针对/ sessions的响应描述符,但是我不知道如何创建它来使/ sessions / 20 / people(/ sessions / sessionID / people)中的人员参与。
我的 session 响应描述符是;
RKResponseDescriptor *responseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:sessionsMapping
pathPattern:@"/sessions"
keyPath:nil
statusCodes:RKStatusCodeIndexSetForClass(RKStatusCodeClassSuccessful)];
RKResponseDescriptor *clientInSessionResponseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:clientsInSessionMapping
pathPattern:@"/sessions/:sessionID/people"
keyPath:nil
statusCodes:RKStatusCodeIndexSetForClass(RKStatusCodeClassSuccessful)];
最佳答案
我做的是发送请求路径时的参数替换。因此,在您的情况下,我将执行以下操作:
NSString *idValue; // this is the sessionID value
NSString *path = [@"/sessions/:sessionID/people" stringByReplacingOccurrencesOfString:@":sessionID" withString:idValue];
[[RKObjectManager sharedManager] getObjectsAtPath:path parameters:nil success:^(RKObjectRequestOperation *operation,RKMappingResult *mappingResult)
{
// handle success
} failure:^(RKObjectRequestOperation *operation, NSError *error) {
RKLogError(@"*** RK load FAIL");
}]
关于ios - 如何使用带有ID的RKResponseDescriptor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15231772/
我正在使用 RESTKit 执行 GET 请求,我的 RKResponseDescriptor 已弃用。我知道这是因为我没有方法参数,但我不知道我会为方法参数放什么。这是我当前的代码: RKRespo
我在使用 2 个实体的应用程序中使用 RestKit 0.20.0rc1: 一个“笔记”(NoteClass)。 一个“集合”(SetClass),其中包含一个音符集合。 我有以下 2 个响应描述符(
所以我对这两个功能有什么区别,或者至少,如何将它们合并在一起感到有点困惑。我有这种情况,我有这个描述符: RKResponseDescriptor *responsePlant = [RKRe
因此,我当前用于更新对象的服务遵循以下 URL 的格式 http://www.baseurl.com/servicemethodAddObject/transactionId?clientTime=c
在这种情况下最好的方法是什么? 我有通往里程碑资源的路径: GET: {baseURL}/rest/v2/common/plans/{id}/milestones 还有这条通往不同资源的路径: GET
我正在尝试做一些 RESTKit http 请求,当我使用 RKResponseDescriptor 代码行时,它说 'responseDescriptorWithMapping:pathPatter
我是一名优秀的程序员,十分优秀!