gpt4 book ai didi

iphone - 如何向 ASIHttpRequest 添加 GET 参数?

转载 作者:行者123 更新时间:2023-12-03 19:11:49 25 4
gpt4 key购买 nike

如何将 GET 参数添加到 ASIHttpRequest?

我想以编程方式从 http://mysite.com/server 转到 http://mysite.com/server?a=1&b=2

我将所有参数作为 NSDictionary 对象中的键值对。

谢谢

最佳答案

使用字符串格式,例如

NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:@"1",@"a",@"2",@"b", nil];

NSMutableString *prams = [[NSMutableString alloc] init];

for (id keys in dict) {
[prams appendFormat:@"%@=%@&",keys,[dict objectForKey:keys]];
}
NSString *removeLastChar = [prams substringWithRange:NSMakeRange(0, [prams length]-1)];
NSString *urlString = [NSString stringWithFormat:@"http://mysite.com/server?%@",removeLastChar];

NSLog(@"urlString %@",urlString);

关于iphone - 如何向 ASIHttpRequest 添加 GET 参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9159663/

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