Попробуйте явно указать свой локальный хост и добавить нужные типы методов:
// Add headers
app.use(function (req, res, next) {
// Website you wish to allow to connect
res.setHeader('Access-Control-Allow-Origin', 'http://localhost:4200');
// desired types of methods
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');
// Set to true if you need the website to include cookies in the requests sent
// to the API (e.g. in case you use sessions)
res.setHeader('Access-Control-Allow-Credentials', true);
// Pass to next layer of middleware
next();
});
ОБНОВЛЕНИЕ:
Например, сервер вашего узла размещен на http://127.0.0.1:8000
. Тогда ваше угловое приложение должно быть http://127.0.0.1:4200
.
ОБНОВЛЕНИЕ 1:
npm install --save cors
, а затем:
var express = require('express');
var cors = require('cors');
var app = express();
app.use(cors());