0

我只是尝试用查询来做 AsyncTask。我已经在我的应用程序中的某些功能上成功使用了 AsyncTask 查询。但是当我尝试在 listfragment 上显示数据时出现错误。出现的错误是“方法不允许”

这是我的脚本:

   public void callApiMomentApi(String email) {
    URL = Constant.URLApi.MOMENT;
    Map<String, Object> params = new HashMap<String, Object>();
    params.put("email", email);
    resultListener.onApiPreCall();
    aq.ajaxCancel();

    try {
        aq.ajax(URL, params, String.class, callback);

    } catch (Exception e) {
        resultListener.onApiResultError(e.getMessage());
        Log.e("Moment","Aquery Error");
    }
}

private AjaxCallback<String> callback = new AjaxCallback<String>() {
    public void callback(String url, String result, AjaxStatus status) {
        if (result != null) {
            ApiDao apiDao = null;
            try {
                apiDao = gson.fromJson((result).toString(), ApiDao.class);

                if (apiDao.getSuccess().equals("true")) {
                    resultListener.onApiResultOk(apiDao.getData().get(0).getMoment());
                }
                else {
                    resultListener.onApiResultError(apiDao.getMessage());
                    Log.e("Moment","Tidak success");
                }
            } catch (Exception e) {
                resultListener.onApiResultError(e.getMessage());
                Log.e("Moment","Exception e");
            }
        } else {
            resultListener.onApiResultError(status.getMessage());
            Log.e("Moment","Result Null");
        }
    };
};

请帮助我,提前谢谢你

4

1 回答 1

0

当然,您的 URL 不是好的 URL,并且服务器正在发回405 Method Not Allowed

至少您的服务器不知道如何处理它。我认为问题不在于您的 Android 代码。

检查您的 servlet 和 URL。

于 2015-01-12T09:52:22.860 回答