我有一个代码:
req = new AjaxAdapter;
req.dataType = 'json';
return req.query('GET', url, request, function(responseServer, status, xhr) {
var json;
json = responseServer.data;
return response(json);
}, function(jqXHR, textStatus, errorThrown) {
var exception;
exception = jQuery.parseJSON(jqXHR.responseText);
return showError(exception);
});
我不明白。那么它的query()
功能是什么?我在 jQuery 文档中找不到它。在我的示例中看到此函数有 5 个参数:
- 得到
- 网址
- 要求
- 返回数据的函数(响应)
- 出错时调用的函数
什么是请求?我在哪里可以找到query()
函数的文档?