gpt4 book ai didi

objective-c - 使用 RESTKit 做一个简单的 json POST

转载 作者:太空狗 更新时间:2023-10-30 03:14:51 24 4
gpt4 key购买 nike

我是 iOS 开发新手,在发出简单的 Json POST 请求时遇到了问题。我有一个包含用户和密码的 NSDictionary,我想将这些值作为 Json 发送到服务器并获得响应。我在没有使用 restkit 的情况下工作,但我无法弄清楚如何使用 RestKit 完成相同的工作,只是找不到我想要的一个很好的例子。

- (bool) login{

NSMutableDictionary* params = [[NSMutableDictionary alloc] init];
[params setValue:self.email forKey:@"email"];
[params setValue:self.password forKey:@"password"];

NSMutableDictionary* rpcData = [[NSMutableDictionary alloc] init];
[rpcData setValue:@"2.0" forKey:@"jsonrpc"];
[rpcData setValue:@"authenticate" forKey:@"method"];
[rpcData setValue:@"" forKey:@"id"];
[rpcData setValue:params forKey:@"params"];

[[RKClient sharedClient] post:@"/api/rpc/" params:rpcData delegate:self];
return nil;
}

服务器期待这样的 Json:

{
jsonrpc : '2.0',
method : 'authenticate', // method name goes here
params : { // params are method-specific
email : 'test@test.com',
password : 'secret'
},
id : 2 // The id can be anything, it will be sent back with the response
}

我知道 RestKit 中包含一个 Json 解析器,但我找不到任何关于如何解析我的 rpcData 字典的文档,我需要使用外部库吗?

现在与服务器的通信没问题,但我没有发送预期的内容。我的字典以“key=value?key2=value2...”的方式映射。这是一个非常愚蠢的问题,但我被卡住了。

更新

在我写这篇文章时,它已经工作了,但 Restkit 已经更新,所以我不确定这是否可行,请查看他们的文档

这是我的问题的解决方案,我正在做的是在您需要调用服务时使用 RPC API 的理想选择:

1.- 首先在你的对象中你需要导入 Restkit 和 RKRequestSerialization,这很重要:

#import <RestKit/RestKit.h>
#import <RestKit/RKRequestSerialization.h>

@interface myObject : NSObject <RKRequestDelegate,RKObjectLoaderDelegate>

2.- 这是发送帖子的登录函数:

- (void) login:(NSString *)username :(NSString *)password{

RKClient *myClient = [RKClient sharedClient];
NSMutableDictionary *rpcData = [[NSMutableDictionary alloc] init ];
NSMutableDictionary *params = [[NSMutableDictionary alloc] init];

//User and password params
[params setObject:password forKey:@"password"];
[params setObject:username forKey:@"email"];

//The server ask me for this format, so I set it here:
[rpcData setObject:@"2.0" forKey:@"jsonrpc"];
[rpcData setObject:@"authenticate" forKey:@"method"];
[rpcData setObject:@"" forKey:@"id"];
[rpcData setObject:params forKey:@"params"];

//Parsing rpcData to JSON!
id<RKParser> parser = [[RKParserRegistry sharedRegistry] parserForMIMEType:RKMIMETypeJSON];
NSError *error = nil;
NSString *json = [parser stringFromObject:rpcData error:&error];

//If no error we send the post, voila!
if (!error){
[[myClient post:@"/" params:[RKRequestSerialization serializationWithData:[json dataUsingEncoding:NSUTF8StringEncoding] MIMEType:RKMIMETypeJSON] delegate:self] send];
}
}

最佳答案

对于较旧的 RestKit

你的委托(delegate)中可能有这样的东西:

    objectManager.serializationMIMEType = RKMIMETypeFormURLEncoded;

你希望它是:

    objectManager.serializationMIMEType = RKMIMETypeJSON;

对于 RestKit v.20:

    // thanks  ColdLogic (from his comment)
[objectManager setRequestSerializationMIMEType:RKMIMETypeJSON];

关于objective-c - 使用 RESTKit 做一个简单的 json POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9102262/

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