当我运行以下代码段的代码时,它会给我一个未捕获的SyntaxError:JSON输入意外结束。我是新的编码,所以我真的很想得到一些帮助。谢谢。
fetch('http://localhost:3000/add-user', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'User 1'
})
}).then(res => {
return res.json();
})
.then(data => alert(data))
.catch(error => alert(error))
我希望它显示解析后的输出,但它只给了我错误。
1条答案
按热度按时间t3irkdon1#
试试这个
} catch(错误){}