Jquery ajax调用then函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery ajax调用then函数相关的知识,希望对你有一定的参考价值。
所以我需要两个ajax调用来获取所有数据。我正在使用jQuery
的ajax调用来实现这一目标。但后来我对执行顺序感到有点困惑。这是我有问题的代码:
$.ajax({
type: "GET",
url: "/api/data",
dataType: "json"
}).then(function (data) {
console.log("I am the first")//correct
}).then(function () {
//second ajax
$.ajax({
type: "GET",
url: "/api/lifecyclephase",
dataType: "json"
}).then(function (data) {
console.log("I am the second")//third
})
}).then(function () {
console.log("I am the third")//second
})
输出是
I am the first
I am the third
I am the second
在继续之前,then
不应该让第二个ajax
完成它的工作吗?
正确的:
$.ajax({
type: "GET",
url: "/api/data",
dataType: "json"
}).then(function (data) {
console.log("I am the first")
}).then(function () {
$.ajax({
type: "GET",
url: "/api/lifecyclephase",
dataType: "json"
}).then(function () {
console.log("I am the second")
}).then(function(){
console.log("I am the third")
})
})
答案
在有问题的代码中,你只是缺少一个return
。
$.ajax({
type: "GET",
url: "/api/data",
dataType: "json"
}).then(function (data) {
console.log("I am the first");
}).then(function () {
return $.ajax({
^^^^^^
type: "GET",
url: "/api/lifecyclephase",
dataType: "json"
}).then(function (data) {
console.log("I am the second");
});
}).then(function () {
console.log("I am the third");
});
没有return
,没有任何东西可以告知内部承诺的退出的外部承诺链,因此外链不等待内部承诺在进入第三阶段之前解决。
另一答案
“第二个”$.ajax
在第二个.then
内被初始化,但$.ajax
没有被其他任何东西链接 - 解释器初始化请求就是这样,所以当第二个.then
到达时,下一个.then
(third
)立即执行。
尝试return
ing第二个Promise - 随后的.then
只会等待Promise
来解决,如果Promise
由之前的.then
返回:
.then(function (data) {
console.log("I am the first")//correct
})
.then(function () {
//second ajax
return $.ajax({
// ...
以上是关于Jquery ajax调用then函数的主要内容,如果未能解决你的问题,请参考以下文章
jquery异步ajax与服务器通信过程中如何通过then方法链式传递多层数据