菜鸟教程小白 发表于 2022-12-13 03:12:35

ios - NSURLRequest HTTPMethod 属性的 NSString 常量?


                                            <p><p>Foundation 是否有 NSString 常量用于支持的 HTTPMethod 值(例如,用于 GET、POST 等)?</p>

<p>搜索了 NSURLRequest 文档,但找不到任何东西。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>据我所知,<code>NSURLRequest</code> 没有任何 HTTP 方法类型的常量。但是,您可以定义自己的并在其他地方使用它们。像这样的:</p>

<pre><code>//Somewhere
#define setPOST(request)

//...later in code
NSMutableURLRequest *request = [ init];
setPOST(request);
</code></pre>

<p>我也强烈推荐使用 <a href="https://github.com/AFNetworking/AFNetworking" rel="noreferrer noopener nofollow"><code>AFNetworking</code></a> .使用该库,您可以轻松地执行以下操作:</p>

<pre><code>; //Obviously bare-bones, you&#39;d need to fill in the parameters and blocks
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - NSURLRequest HTTPMethod 属性的 NSString 常量?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26749111/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26749111/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - NSURLRequest HTTPMethod 属性的 NSString 常量?