gpt4 book ai didi

ios - 将数据附加到 POST NSURLRequest

转载 作者:IT老高 更新时间:2023-10-28 11:22:20 26 4
gpt4 key购买 nike

如何将数据附加到现有的 POST NSURLRequest?我需要添加一个新参数userId=2323

最佳答案

如果您不希望使用 3rd 方类,那么以下是您设置帖子正文的方式...

NSURL *aUrl = [NSURL URLWithString:@"http://www.apple.com/"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:aUrl
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];

[request setHTTPMethod:@"POST"];
NSString *postString = @"company=Locassa&quality=AWESOME!";
[request setHTTPBody:[postString dataUsingEncoding:NSUTF8StringEncoding]];

NSURLConnection *connection= [[NSURLConnection alloc] initWithRequest:request
delegate:self];

只需将您的键/值对附加到帖子字符串中

关于ios - 将数据附加到 POST NSURLRequest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6148900/

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