ASIHTTPRequest发送正确的HEX但没有数据?

时间:2011-06-04 12:50:44

标签: objective-c http-post asihttprequest

我正在向服务器发送信息,但是当我这样做时,没有信息通过。 Screenshot of outgoing parameters

当我检查HTTP Scoop的POST HEX选项卡时,我发现所有信息都在那里。 enter image description here

使用此循环设置POST值后,我以异步方式发送它。我错过了另一个步骤吗?我知道它正在通过,因为我收到了正确的响应代码。

for(int i = 0;i<13;i++){
    [request setPostValue:[propertyValues objectAtIndex:i] forKey:[propertyKeys objectAtIndex:i]];  
}


[request startAsynchronous]; 

0 个答案:

没有答案