ajax失败和错误之间的区别?

时间:2018-02-12 12:42:42

标签: ajax

使用ajax时我很熟悉错误,它用于抛出运行ajax函数时发生的任何错误,为什么会使用失败?

               $.ajax({
                    type: "POST",
                    contentType: "application/json; charset=utf-8",
                    url: 'Webstore.aspx/FetchSlider',
                    data: '{"_CompanyId":' + _CompanyId + ',"_ShopId":' + _ShopId + '}',
                    dataType: "json",
                    success: function (data) {
                        -- code
                    },
                    failure: function (msg) {
                        -- code
                    },
                    error: function (msg) {
                        -- code
                   }
                });

1 个答案:

答案 0 :(得分:1)

我查看了jQuery文档,未能找到与failure相关的api。您确定jQuery公开了一个名为failure的API回调吗?换句话说,当ajax请求失败时,您确定调用了failure回调吗?