我正在使用ASIHTTPRequest包装器,我可以成功上传文件。但是,[request responseString]
始终返回空白!
文档说在提取文本数据时使用[request responseString]
,但在上传文件时我看到了许多使用[request responseString]
的代码示例。上传文件时这是否有效? [request responseString]
是否应该在服务器的php脚本中返回echo字符串或什么?
如果服务器的上传php脚本以:
结束echo "success";
或
echo "failure";
ASIHTTPRequest可以读取此字符串吗?服务器如何将消息发送回ASIHTTPRequest?
谢谢。