这可能是因为您的链接初始请求没有接收到状态响应。要解决此问题,您可以使用如下代码示例在加载页面时添加事件侦听器,以便在收到状态响应后释放链接。
document.addEventListener("DOMContentLoaded", function () {
if (window.location.href.includes("?")) {
fetch(window.location.href)
.then((res) => {
if (res.status !== 200) {
window.location.href = "error.html";
}
})
.catch((err) => {
console.error(err);
});
}
});