1.自定义一个方法,如:Ajax,此处我传了2个参数
var Ajax = function (options, url) {
return new Promise(function (resolve, reject) {
$.ajax({
type: "post",
data: options,
url: url,
success: function (res) {
resolve(res);
}
})
})
};
2.在使用的时候
Ajax(options,url).then(function(value){
// value 是后台返回的数据,then 表示接口返回成功
console.log(value)
//return 是返回 连续的第二个 接口
return Ajax(options,url);//接口2
}).then(function(value){
//此处的value为 上面接口2返回的数据
})