我只是尝试用查询来做 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");
}
};
};
请帮助我,提前谢谢你