在iphone中使用html发布数据

时间:2013-04-02 05:13:33

标签: iphone html http-post

在网站中,使用HTML post请求使用以下代码发布表单数据:

<div id="requestinfo">
    <form method="post" action="http://abc/form-post.php" id="request_form">
        <input type="hidden" name="field1" value="value1" />
        <input type="hidden" name="field2" value="value2" />
    </form>
</div>

我怎样才能在iPhone中做同样的事情? We do not have to use web services.

1 个答案:

答案 0 :(得分:1)

我建议使用AFNetworking作为处理HTTP动词和数据的解决方案。

AFHTTPClient允许您指定动词(在本例中为POST)以及要传递的参数。

请参阅:AFNetworking Post Request