在由AWS Elastic Beanstalk托管的Node Express应用中,CORS请求出现问题。每当我尝试请求/login
端点时,都会收到CORS错误,而/lost_password
端点工作得很好。我使用cors
软件包在Express应用中配置了CORS:
const cors = require('cors');
const corsOptions = {
origin: WEBAPP_ADDR,
methods: 'GET,POST,PUT,PATCH,DELETE',
allowedHeaders: 'Content-Type',
credentials: true
};
app.use(cors(corsOptions));
Elastic Beanstalk是否有与此相关的问题?我找不到任何可以解释这个问题的东西。