0

您好,我有下一个函数,总是返回 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;
            }
        });
    }
4

1 回答 1

2

如果你想让它异步你不能等待它返回一个值,你必须实现回调函数。

function GetStore(success, error) {
    $.ajax({
        url: serviceurl + 'GetSometing',
        type: 'POST',
        contentType: 'application/json',
        dataType: "json",
        success: success,
        error: error
    });
}

GetStore(function(result) {
    // successful result
}, function(xhr, description, error) {
    // an error occurred
});
于 2012-06-13T12:23:26.907 回答