ASIHttpRequest POST
问题 I am working on an iphone app and my requirements are to make a simple post to a web service and the web service returns a json response. The sample code they give for a post is this, but how do I get a response? I see there is asynchronous code for doing a get, but how do I do it async for a post? ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url]; [request addPostValue:@"Ben" forKey:@"names"]; [request addPostValue:@"George" forKey:@"names"]; 回答1: If you're targeting iOS