如何以编程方式调用$ .getJSON中的错误函数?

时间:2012-03-23 17:33:14

标签: javascript jquery

在下面的代码中,是否可以从else块调用错误函数?

$.getJSON('something.php', function(data) {
    if (data.error === undefined) {
    } else {
        // How can I call the error function below?
    }
}).error(function() {
    // This is the error function the be called.
});

1 个答案:

答案 0 :(得分:7)

只需单独定义并调用它:

$.getJSON('something.php', function(data) {
    if (data.error === undefined) {
    } else {
        // How can I call the error function below?
        handleError();
    }
}).error(handleError);

function handleError() {
}