Я кодирую приложение vue и использую Node.js Api. Я уже включил Cors в Backend и другие методы Post работает хорошо. Но на этом маршруте есть Nginx 502 Bad Gateway.
Ошибка в консоли Chrome:
Failed to load resource: the server responded with a status of 502 (Bad Gateway)
Failed to load : No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin is therefore not allowed access. The response had HTTP status code 502.
Приложение. JS CORS
app.use(function(req, res, next) {
res.setHeader("Access-Control-Allow-Origin","*");
res.setHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept,Authorization");
res.setHeader('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,PATCH,OPTIONS');
res.setHeader("Access-Control-Allow-Credentials", "false")
next();
});
Мой AddPatient компонент и мой Axios , доступные на pastebin