我在单击按钮时调用此函数。我在我的 API 中添加了一个标头,但它仍然显示错误。
let getData = () => { console.log("getData 函数开始");
const options = {
method: "GET",
headers: new Headers({ 'content-type': 'application/json' }),
mode: 'no-cors'
};
fetch("http://167.71.226.242/", options).then((response) => {
console.log("Inside 1st then");
return response.json();
}).then((data) => {
console.log("Inside 2nd then");
console.log(data);
});
}