基本上,我發送POST請求具有空數據體:空體在POST中ASIHTTPRequest
ASIHTTPRequest *request [ASIHTTPRequest alloc] init];
[request setURL:[NSURL URLWithString:escapedUrlString]];
[request setRequestMethod:@"POST"];
[request addRequestHeader:@"Content-Type" value:@"application/xml"];
[request startSynchronous];
但我每次收到此響應:檢測
不正確NSStringEncoding 0x0000值。假設NSStringEncodingASCII。將在不久的將來停止這種兼容性映射行爲。
我想知道是否必須設置發佈值。
只需在快速查看代碼後進行確認,實際上就是這樣。檢查接口文件(ASIHTTPRequest.h)以獲取有關init/dealloc方法的詳細信息。 – Rog 2010-12-05 00:10:34