我正在尝试从React应用程序向Express后端发出异步请求。但是我得到了通常的“ CORS问题:错误的请求”:
我知道Express的CORS插件,因此我已经cors从Node Plugin Manager安装并应用于我的后端,index.js例如:
...
import express from 'express';
import cors from 'cors';
...
const app = express();
...
const whitelist = [
'http://localhost:3000'
]
const corsOptions = {
origin: function (origin, callback) {
if (whitelist.indexOf(origin) !== -1) {
callback(null, true)
} else {
callback(new Error('Not allowed by CORS'))
}
}
}
app.use(cors(corsOptions));
...
app.listen(4000, () => console.log('server running on port 4000);
因此,我尝试使用Fecth API从后端服务器检索数据:
class Component extends React.Component {
render() {
const { componentId } = this.props.match.params;
(async () => {
const query = `
query {
getComponent(id: "${componentId}") {
type
}
}
`;
const options = {
method: 'POST',
body: JSON.stringify(query)
};
const component = await fetch('http://localhost:4000/graphql', options);
console.log(component);
})();
return (
<h1>Hola</h1>
);
}
}
export default Component;
我也尝试过设置headers: { 'Content-Type': 'application/json },mode: cors并设置crossOrigin为true。
每次使用任何配置时,我都会收到相同的错误。任何意见表示赞赏。
陪伴而非守候
相关分类