gpt4 book ai didi

javascript - "NetworkError when attempting to fetch resource."仅在 Firefox 上

转载 作者:行者123 更新时间:2023-12-05 00:35:13 28 4
gpt4 key购买 nike

我正在做 POST使用 fetch 从我的前端请求API。但是当我在 Firefox 中尝试时,它不起作用。在 Chrome 中工作正常。

这就是我想要做的。

const handleSubmit = async event => {
try {
await fetch(`https://api.example.net/api/route?slug=example`, {
method: 'post',
headers: {
'Content-Type': 'application/json',
'x-api-key': /* API KEY*/
},
body: JSON.stringify({
name,
email
})
})
.then(response => console.log(response))
.catch(err => console.log(err));
} catch (error) {
console.log(error);
}
};

最佳答案

对我来说,这是添加 event.preventDefault() 的问题

关于javascript - "NetworkError when attempting to fetch resource."仅在 Firefox 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59176488/

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