我是React和JS的新手,试图从我的React组件中的服务获取数据,但是什么也没进来:
fetch("http://localhost:9000/someEndPoint",
{
method: "GET",
mode: "no-cors",
credentials: "same-origin",
cache: "no-cache",
headers: {
"Accept" : "application/json; charset=utf-8",
"Content-Type" : "application/json; charset=utf-8"
}
})
.then((response) => {
if (!response.ok) {
throw Error(response.statusText);
}
return response.json();
})
.then((b) => {
console.log(b);
})
.catch((error) => {
console.log(error);
});
更新:由于没有cors模式,我得到的响应是不透明的,您知道如何处理吗?