JSONObject jsonObject = new JSONObject();
jsonObject.put("username", "ryantang");
StringEntity stringEntity = new StringEntity(jsonObject.toString());
client.post(MainActivity.this, "http://api.com/login", stringEntity, "application/json", new JsonHttpResponseHandler(){
。。。。。。。。(省略)
以上是代码,发现在post请求中携带json参数后发送请求,在后台无法收到我传递的json参数,这是为什么?
先谢谢各位了
jsonObject.put("username", "ryantang");
StringEntity stringEntity = new StringEntity(jsonObject.toString());
client.post(MainActivity.this, "http://api.com/login", stringEntity, "application/json", new JsonHttpResponseHandler(){
。。。。。。。。(省略)
以上是代码,发现在post请求中携带json参数后发送请求,在后台无法收到我传递的json参数,这是为什么?
先谢谢各位了