我用 Android 的 httpclient 向 rails 发送 post 请求,在 console 中得到是: Parameters: {"_json"=>"totake=aaa&togive=bbb"}
不明白为什么不是{"_json"=>{"tokake"=>"aaa", "togive"=>"bbb"}}这种格式
Android 代码如下: HttpPost postRequest = new HttpPost(r.url); postRequest.setHeader("Accept", "application/json"); postRequest.setHeader("Content-Type","application/json"); postRequest.setEntity(new UrlEncodedFormEntity(nameValuePairs, "utf-8"));
不知道有人遇到过这样的问题没有?谢谢!