ios开发中怎么post上传字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios开发中怎么post上传字符串相关的知识,希望对你有一定的参考价值。

参考技术A

AFNetworking和ASIHTTPRequest都可以。以下是ASIHTTPRequest做的,你可以参考下:  

        //发送POST请求

        NSURL *nsUrl = [NSURL URLWithString:url];
        asiHttpRequest = [[ASIHTTPRequest alloc] initWithURL:nsUrl];
        [asiHttpRequest appendPostData:postData];
        [asiHttpRequest buildPostBody];
        asiHttpRequest.timeOutSeconds = 30;
        [asiHttpRequest startSynchronous];
        int statusCode = [asiHttpRequest responseStatusCode];
        NSLog(@"POST response status code : %d", statusCode);
        if (statusCode == 200)
        
        }

本回答被提问者采纳

以上是关于ios开发中怎么post上传字符串的主要内容,如果未能解决你的问题,请参考以下文章

java http post 怎么设置 raw格式

前端JS上传的数据,服务器怎么接收

带有字符串正文的 ios HTTP Post

php中的$_REQUEST()函数怎么用

php中的$_REQUEST()函数怎么用

在 Flutter 中上传带有 http.post 和注册表单的图像?