gpt4 book ai didi

javascript - 表达并获取 : TypeError: NetworkError when attempting to fetch resource

转载 作者:行者123 更新时间:2023-12-01 23:24:49 26 4
gpt4 key购买 nike

我正在使用 express、fetch 和 firefox。这是代码

async updateTutorial() {
const requestOptions = {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(this.currentTutorial)
};

await fetch("https://localhost:9000/tutorial/update" , requestOptions);


}

在 Firefox 中我看到这个错误:TypeError: NetworkError when trying to fetch resource不知道是什么问题。

最佳答案

首先,你必须使用http而不是https。

要修复 cors 错误,您必须在请求选项中指定 mode:"no-cors"

async updateTutorial() {

const requestOptions = {
method: "POST",
mode: "no-cors",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(this.tutorial)
}

await fetch("http://localhost:9000/tutorial/update" , requestOptions);
}

希望对您有所帮助。如果您遇到任何问题,请告诉我。

关于javascript - 表达并获取 : TypeError: NetworkError when attempting to fetch resource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67451129/

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