5

我在我的 iphone 应用程序中生成了 pdf,现在我想将该 pdf 发送到服务器。为此,我正在转换为 NSData 并发送。

我在谷歌搜索并使用“POST”找到解决方案,但它适用于图像。

在服务器上它正在上传但 pdf 没有打开它说附件有一些错误

在下面的代码中,我这样做了:

NSData *pdfdata = [[NSData alloc] initWithData:[self.pdfFilePath dataUsingEncoding:NSASCIIStringEncoding]];
ASIFormDataRequest *request=[ASIFormDataRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@%@",MainUrl,@"updatefile.php"]]];
[request setDelegate:self];
        [request setPostValue:appDelegate.userId forKey:@"userid"];
         [request addData:pdfdata forKey:@"file"];
[request startSynchronous];

//self.pdfFilePath = /var/folders/a0/a01nF1oGGkebQxw7H0YsBU+++TI/-Tmp-/MyAccount.pdf;

请指导我,

提前致谢。

4

1 回答 1

1

而不是这个

[request addData:pdfdata forKey:@"file"];

使用下面的代码

[request setFile:self.pdfFilePath forKey:@"file"];
于 2012-09-04T12:54:40.167 回答