主要是记录一下。
接受错误的方法有三个参数
在网络上查询的经常是一个,语言特点导致一个也不报错。
$.ajax({ type: "POST",//方法类型 dataType: "json",//预期服务器返回的数据类型 url: requestUrl,//url data: ajaxParams, async: async, success: function (result) { if (result.success == "true") { if (result.message != undefined) { $.showSuccessToast(result.message); } if (typeof (callBackFunction) == 'function') if (result.data == undefined) { callBackFunction() } else { callBackFunction(result.data) } } else { $.showErrorToast(result.message); } }, error: function (req, status, error) { console.log(req); console.log(status); $.showErrorToast("连接服务器失败!错误信息:" + error); } });
针对这三个错误进行处理吧~~~
一般都是地址找不到的错误