gpt4 book ai didi

javascript - Fetch -API 返回 HTML 而不是 JSON

转载 作者:行者123 更新时间:2023-11-29 17:54:25 27 4
gpt4 key购买 nike

我有一个在 Postman 上测试过的 Spring REST API,它返回完全有效的 JSON。但是,当我在前端 React 代码上调用相同的 API 时,它会返回 HTML。这是我用来调用 API 的函数,

export function run(engine, mediaId, owner, target, access){
let url = engine + "/" + mediaId + "?id=" + owner + "&targetId=" + target + "&access=" + access;

return fetch(full_url, { credentials: "include",
headers: {
"Content-type": "application/x-www-form-urlencoded; charset=UTF-8"
}})
.then((response) => {

return response.json();})
.then((data) => {
console.log(data);

})
.catch((error) => {
console.log(error);
});
}

我在这个调用中遇到语法错误 Unexpected token < Thus when I check using response.text()我可以看到返回的数据是 HTML 而不是 JSON。我需要在前端代码中更改哪些 API 才能返回 JSON。

最佳答案

标题不正确。 JSON 响应的有效 header :

headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
}

关于javascript - Fetch -API 返回 HTML 而不是 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40602751/

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