ios - GET 请求使用了太多参数 - iOS
<p><p>我正在尝试在 NSMutableURLRequest 中为 GET 请求加载 URL,如下所示:</p>
<pre><code> NSString *serverAddress =,@"test",,,@"1000",,,@"GBP",@"",,@"null" ,@"null" ,@"null",,,@"templates/test.vm"];
NSURL *url = ];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url
cachePolicy:NSURLRequestReloadRevalidatingCacheData timeoutInterval:15.0];
NSString *authStr = ;
NSData *authData = ;
NSString *authValue = ];
;
;
NSError *requestError;
NSURLResponse *urlResponse = nil;
NSData *response1 = ;
</code></pre>
<p>NSLog(@"输出数据%@",response1);</p>
<p>我想我使用 url 字符串加载了太多参数。有没有更好的方法来为 GET 请求传递参数? response1 的当前输出为空</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在我看来,问题在于您正在使用某种编码方法对整个 url 进行编码,但如果每个参数包含某些字符,您实际上只需要单独编码。例如:</p>
<pre><code>NSString *serverAddress = @"http://test.us.to:8080/api/offers";
NSString *altIdParameter = [@"Escape?This?String?" urlEncodeUsingEncoding:NSUTF8StringEncoding];
NSString *aUrlParameter = [@"http://test.us.to/offers/harvester_summer13.html" urlEncodeUsingEncoding:NSUTF8StringEncoding];
NSString *getRequestUrl = ;
NSURL *url = ;
</code></pre></p>
<p style="font-size: 20px;">关于ios - GET 请求使用了太多参数 - iOS,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/20665349/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/20665349/
</a>
</p>
页:
[1]