我正在使用访存API将数据发布到托管在heroku上的API。我收到错误消息{error:Invalid JSON}
我该怎么办。
const signUpBtn2 = document.getElementById("enter2");
signUpBtn2.addEventListener("click", function(e){
e.preventDefault()
const formData = new FormData()
const fetchData = {
method: "POST",
headers: {
Accept: "application/json, text/plain, */*",
"Content-type": "application/json; charset=UTF-8"
},
body: formData
};
fetch("https://polityco.herokuapp.com/auth/signup", fetchData)
.then(function(res) {
return res.json();
})
.then(function(text) {
console.log([text]);
})
.catch(function(error) {
console.log(error);
});
});
我期望json响应,但是得到的响应是[{…}] 0:{错误:“无效的JSON”}} 长度:1