gpt4 book ai didi

ios - 发布路径必须与 RKResponseDescriptor pathPattern 完全匹配

转载 作者:行者123 更新时间:2023-11-29 03:01:51 25 4
gpt4 key购买 nike

因此,我当前用于更新对象的服务遵循以下 URL 的格式

http://www.baseurl.com/servicemethodAddObject/transactionId?clientTime=clientTime

所以这是我放在那里的代码。大概。

[objectManager addResponseDescriptor:[RKResponseDescriptor responseDescriptorWithMapping:eventResponseMapping method:RKRequestMethodGET pathPattern:@"/GetStuff" keyPath:nil statusCodes:RKStatusCodeIndexSetForClass(RKStatusCodeClassSuccessful)]];

// I'd want to add items to the URL but the parameters parameter only goes in to the post body, If I add objects to the path @"?GetStuff/?parm=Stuff&parm2=stuff2" then the response will not be mapped properly
[objectManager postObject:object path:@"/GetStuff" parameters:parms success:nil failure:nil];

看来RestKit要求用于发布对象的路径和用于创建RKDescriptor的pathPattern必须完全匹配。有没有办法让restKit进行比较,忽略其对象映射的url参数?

这是正确的做法吗?发布对象并在 URL 中添加项目。

最佳答案

您可以构建路径来添加参数。使用 pathPattern:@"/GetStuff" 将匹配构建的路径,例如:

@"/GetStuff?parm=Stuff&parm2=stuff2"

(如果添加或删除不在路径模式中的 / 字符,您将遇到问题)

关于ios - 发布路径必须与 RKResponseDescriptor pathPattern 完全匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23203532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com