gpt4 book ai didi

javascript - 获取简单 GET 请求的 NS_BINDING_ABORTED 错误

转载 作者:行者123 更新时间:2023-12-03 14:13:30 29 4
gpt4 key购买 nike

为什么我会收到此错误?
Here is a screenshot of my Network tab in Firefox showing the NS_BINDING_ABORTED
我在这里查看了这个线程 NS_BINDING_ABORTED Shown in Firefox with HttpFox 但我根本不知道它在说什么......
有人可以帮我吗?
谢谢

$(function() {
let userName = null;
let userStatus = null;

$("#search").on("click", function() {
userName = $("#username").val();
apiCall();
});

$(".dropdown-menu a").on("click", function() {
$("button.dropdown-toggle").text($(this).text());
userStatus = $("button.dropdown-toggle").text();
});

function apiCall() {
if (userName !== null && userStatus !== null) {
var api = `https://api.jikan.moe/v3/user/${userName}/animelist/${userStatus}`;
fetch(api, {
method: "GET",
headers: {
Accept: "application/json",
},
})
.then(response => response.json())
.then((data) => {
console.log(data)
})
.catch((error) => {
console.log(error);
})
}
}
});

最佳答案

我在 $.get() ajax 调用中遇到了同样的问题。它位于从表单内的按钮触发的函数内。我将按钮移到表单标签之外,问题就消失了。

关于javascript - 获取简单 GET 请求的 NS_BINDING_ABORTED 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64995222/

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