您好,我有下一个函数,总是返回 null 作为结果,但是服务调用成功分支出现任何错误,我想修复它:1. 删除异步属性,2. 其他调用 GetStore 函数的函数应该处理这个结果功能。我怎样才能以正确的方式做到这一点?()
谢谢。
function GetStore() {
$.ajax({
url: serviceurl + 'GetSometing',
type: 'POST',
contentType: 'application/json',
dataType: "json",
async: false,
success: function (result) {
return result;
},
error: function (xhr, description, error) {
return null;
}
});
}