通过formData发送JSON数据 - 目标C.

时间:2014-04-15 15:12:03

标签: objective-c afnetworking

我正在将视频发送到我的应用程序中的服务器。但是用户也在输入有关视频的信息。我的问题是如何将其附加到我的formData作为JSON发送到我的服务器?

AFHTTPClient *httpClient = [AFHTTPClient clientWithBaseURL:[NSURL URLWithString:@"mySite.com/dev/iphone/"]];

NSMutableURLRequest *request = [httpClient multipartFormRequestWithMethod:@"POST" path:@"downloadFileChallange.php" parameters:nil constructingBodyWithBlock:^(id <AFMultipartFormData>formData)
{
 [formData appendPartWithFileData:webData name:@"file" fileName:newUsername mimeType:@"video/quicktime"]; <-- here is where I want to attach the information
}];

建议,想法?

1 个答案:

答案 0 :(得分:1)

创建一个字典并将参数传递给request对象,例如:

parameters = @{ @"loginName": self.loginName.text };