gpt4 book ai didi

javascript - 使用Fetch API POST到localhost:3000

转载 作者:行者123 更新时间:2023-11-28 11:01:07 25 4
gpt4 key购买 nike

Your name here

[JavaScript Vanilla]通过这些div(不是表格),我可以获取播放器的名称。现在,我想将其发布在与JSON-Server一起使用的本地主机上,并写道:

fetch('http://localhost:3000/db', { //OR 'http://localhost:3000/db' -same result
method: 'POST',
headers: {
"Content-type": "application/x-www-form-urlencoded; charset=UTF-8"
//"Content-type": "application/json; raw"
},
body: "Name = " + document.getElementById("name").value
})
.then(function (data) {
console.log('Request succeeded with JSON response', data);
})
.catch(function (error) {
console.log('Request failed', error);
});


但是在那之后我得到了这个错误。

Error

我已经创建了一个“ db.json”文件,其中有一个对象。

最佳答案

很明显,目录/db不存在。用/db.json替换

关于javascript - 使用Fetch API POST到localhost:3000,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48052136/

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