猿问

$ajax中 success 和 error 的触发条件,分别是什么

$.ajax({

                        type: "post",

                        url: "snaker/investigationApplication/close",

                        data: {

                            name:'王'

                        },

                        success: function (data) {

                            ...

                        },

                        error: function (data) {

                           ...

                        }

                    })

ajax中,什么样的条件会触发success ?

还是说,没有触发条件,success和error是按顺序执行的,先进到success里能执行,就不再进到error里


繁星coding
浏览 1324回答 2
2回答

慕雪6442864

XMLHttpRequest 对象的属性readyState和statussuccess:readyState==4 && status==200readyState==4 请求已完成,且响应已就绪status==200 服务器响应正常。本质上是一个if else判断,若if(readyState==4 && status==200){success}else{error}
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答