gpt4 book ai didi

javascript - jQuery Ajax 异步函数不会在成功时触发

转载 作者:行者123 更新时间:2023-11-30 10:58:46 24 4
gpt4 key购买 nike

我有这样的代码:

jQuery("#test_btn").off("click").on("click", function () {
jQuery.ajax({
type: "POST",
url: "/api/test/",
data: {
test: "me"
},
success: async function (response) {
alert("foo");
},
error: function (e) {
console.error(e);

}
});
});

为什么成功函数不会打印带有“foo”的警报?我需要在成功中使用 promise 函数......但什么也没有!

最佳答案

我认为您的问题是您使用的是旧的 JQuery 版本。

3.2.1 中,如果您使用异步功能,因为反馈不起作用

// find elements
var banner = $("#banner-message")
var button = $("button")

// handle click and add class
button.on("click", function() {
banner.addClass("alt");
jQuery.ajax({
type: "POST",
url: "/api/test/",
data: {
test: "me"
},
success: async function(response) {
alert("Success!");
},
error: async function(e) {
alert('O no, an error! :(');
console.error(e);

}
});
})
body {
background: #20262E;
padding: 20px;
font-family: Helvetica;
}

#banner-message {
background: #fff;
border-radius: 4px;
padding: 20px;
font-size: 25px;
text-align: center;
transition: all 0.2s;
margin: 0 auto;
width: 300px;
}

button {
background: #0084ff;
border: none;
border-radius: 5px;
padding: 8px 14px;
font-size: 15px;
color: #fff;
}

#banner-message.alt {
background: #0084ff;
color: #fff;
margin-top: 40px;
width: 200px;
}

#banner-message.alt button {
background: #fff;
color: #000;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

<div id="banner-message">
<button>Send XHR request</button>
</div>

3.3.1及以上版本完美运行

// find elements
var banner = $("#banner-message")
var button = $("button")

// handle click and add class
button.on("click", function() {
banner.addClass("alt");
jQuery.ajax({
type: "POST",
url: "/api/test/",
data: {
test: "me"
},
success: async function(response) {
alert("Success!");
},
error: async function(e) {
alert('O no, an error! :(');
console.error(e);

}
});
})
body {
background: #20262E;
padding: 20px;
font-family: Helvetica;
}

#banner-message {
background: #fff;
border-radius: 4px;
padding: 20px;
font-size: 25px;
text-align: center;
transition: all 0.2s;
margin: 0 auto;
width: 300px;
}

button {
background: #0084ff;
border: none;
border-radius: 5px;
padding: 8px 14px;
font-size: 15px;
color: #fff;
}

#banner-message.alt {
background: #0084ff;
color: #fff;
margin-top: 40px;
width: 200px;
}

#banner-message.alt button {
background: #fff;
color: #000;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="banner-message">
<button>Send XHR request</button>
</div>

关于javascript - jQuery Ajax 异步函数不会在成功时触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58890306/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com