ASIHttpRequest - how to convert NSDictionary of params to url-encoded query param string?
问题 What is the preferred way to make a GET request with ASIHttpRequest using query params provided as an NSDictionary. How do I get from NSDictionary *params to ?param1=value1¶m2=value2 (percent-encoded) Obviously I can construct the query part of the URL manually but it seems like there is probably a better way. Thanks! 回答1: You must pass the query string as part of the URL. From the ASIHTTPRequest interface on GitHub: // The url for this operation, should include GET params in the query