I know how to use HttpGet so that I can execute a httpget to one php page to get the JSONArray after querying the database. Now my problem is that I should first send one string: username to the php page, and then this php page should use this string(username) to query in mysql and return the result as a JSONArray. Should I just use HttpPost to post the string to php and obtain the response?Or any other methods?
1条回答 默认 最新
- doutai1509 2014-09-30 03:28关注
You shouldn't use the POST http method (HttpPost) for this, POST is when the request causes a change in the server of some type. Querying a database to simply get some registers can be perfectly done using GET http method (HttpGet), pass the "user" value as a URL parameter and you should be done.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报