“CORS Express Tutorial” Kod odpowiedzi

CORS in Express

const cors = require('cors');

const corsOption = {
    origin: ['http://localhost:3000'],
};
app.use(cors(corsOption));
//if you want in every domain then
app.use(cors())
Shirshak kandel

Pozwól CORS wyrażać

app.use(function(req, res, next) {
  res.header("Access-Control-Allow-Origin", "YOUR-DOMAIN.TLD"); // update to match the domain you will make the request from
  res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
  next();
});
Poised Penguin

CORS Express Tutorial

$ npm install cors


const cors = require('cors');

const corsOption = {
    origin: ['http://localhost:3000'],
};
app.use(cors(corsOption));
Daniel Kristoffersen

Odpowiedzi podobne do “CORS Express Tutorial”

Pytania podobne do “CORS Express Tutorial”

Więcej pokrewnych odpowiedzi na “CORS Express Tutorial” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu