Android ajax查询异步API回调未触发

时间:2013-12-18 14:04:17

标签: android ajax callback

我有来自Android Query Async API示例的此代码,但永远不会调用回调。

 public void asyncJson(){          
    String url = "http://www.mysite.com/MyService.asmx/GetJson";

    Map<String, Object> params = new HashMap<String, Object>();
    params.put("100", "Param1");

    aq.ajax(url, params, JSONObject.class, new AjaxCallback<JSONObject>() {

        @Override
        public void callback(String url, JSONObject json, AjaxStatus status) {

            int dummy=0; // breakpoint here....but it never stops the debugger here
            //showResult(json);               
        }
    });

 } // asyncJson    

我在int dummy = 0上放了一个断点,它永远不会停在那里。 ajax行正确执行,也没有错误。

1 个答案:

答案 0 :(得分:0)

更改了params.put(“100”,“Param1”); to params.put(“Param1”,“100”);调用回调。