菜鸟教程小白 发表于 2022-12-13 05:45:02

ios - GET 请求使用了太多参数 - iOS


                                            <p><p>我正在尝试在 NSMutableURLRequest 中为 GET 请求加载 URL,如下所示:</p>

<pre><code> NSString *serverAddress =,@&#34;test&#34;,,,@&#34;1000&#34;,,,@&#34;GBP&#34;,@&#34;&#34;,,@&#34;null&#34; ,@&#34;null&#34; ,@&#34;null&#34;,,,@&#34;templates/test.vm&#34;];

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 = @&#34;http://test.us.to:8080/api/offers&#34;;

NSString *altIdParameter = [@&#34;Escape?This?String?&#34; urlEncodeUsingEncoding:NSUTF8StringEncoding];
NSString *aUrlParameter = [@&#34;http://test.us.to/offers/harvester_summer13.html&#34; 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]
查看完整版本: ios - GET 请求使用了太多参数 - iOS