我有一个奇怪的(可能不是我敢打赌的)问题,我有一个 JavaScript 方法来调用我所有的 ajax 调用,请参见下文。
function ajaxCall(url, params) {
if (params === null) {
$.ajax({
type: 'POST',
url: url,
contentType: 'application/json; charset=utf-8',
dataType: 'json'
}).success(function(response) {
return response;
}).error(function(response) {
return response;
});
} else {
var data = JSON.stringify(params);
$.ajax({
type: 'POST',
url: url,
data: data,
contentType: 'application/json; charset=utf-8',
dataType: 'json'
}).success(function(response) {
return response;
}).error(function(response) {
return response;
});
}
}
当我调用此方法时,我从 AJAX 调用中得到了适当的响应,一切看起来都很美好,直到我返回响应,调用返回未定义?
为了完整起见,我将包括我的调用代码。
var call = ajaxCall(someUrl, someParams);
只是为了澄清并确保我的杂乱无章被理解调用在上面的例子中是未定义的?