@
autoname //老式 jquery 写法
$.ajax('url1', {
data: {username: 'example'},
success: function (res) {
$.ajax('url2', {
data: {somedata:res},
success: function (res) {
$.ajax('url3', {
data: {somedata:res},
success: function (res) {
},
error: function () {
console.log('error')
}
})
},
error: function () {
console.log('error')
}
})
},
error: function () {
console.log('error')
}
})
/////////////////////////////////////////////////
//fetch api
try{
let res = await fetch('url1',{
body:{username: 'example'},
method: 'POST'
}).then(res=>res.text())
res = await fetch('url2',{
body:{somedata:res},
method: 'POST'
}).then(res=>res.text())
res = await fetch('url3',{
body:{somedata:res},
method: 'POST'
}).then(res=>res.text())
}catch(err){
console.log('error')
}
再见,回调地域。