gpt4 book ai didi

javascript - 警告 XMLHttpRequest 弹出 ajax

转载 作者:行者123 更新时间:2023-12-02 14:21:37 27 4
gpt4 key购买 nike

大家好,我尝试执行此请求

var post_url = "https://www.googleapis.com/books/v1/volumes?q=isbn:0716604892";
var text_area = $('#isbn_textarea').val().trim();
$.ajax({
dataType: 'json',
url: post_url,
type: 'GET',
success: function(response) {
var out = "";
alert(response);
},
error: function(response) {
alert('mal');
}

})

但我收到此警告

Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.

有什么想法吗?提前致谢!

最佳答案

某个地方的某些东西正在将 async 设置为 false,但它不在您共享的代码中。

您很可能会调用 ajaxsetup某处设置async。您应该找到它并将其删除。

(作为一个快速技巧,您可以将 async: true 粘贴到选项对象中)。

关于javascript - 警告 XMLHttpRequest 弹出 ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38609396/

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