Android:没有调用JsonHttpResponseHandler

时间:2015-01-30 15:42:39

标签: android rest

我正在开发一个简单的Android应用程序以及一个RESTful服务器。应用程序将向服务器发送POST请求并返回结果。

这是android代码:     private void addPoints(String searchString){

RequestParams params = new RequestParams();
params.put("category", textCategory.getText());
params.put("points", textPoints.getText());
client.post(QUERY_URL, params,
new JsonHttpResponseHandler() {

    @Override
    public void onSuccess(JSONObject o) {
        Log.d("omg android", o.toString());

        mDialog.dismiss();
    }        
    // code that handles onFailure()
);

运行应用程序时,我可以从wireshark看到请求已被发送,并且" Bad Request" (400)得到回复。但从未调用过响应处理程序。为什么?

0 个答案:

没有答案