Skip to content Skip to sidebar Skip to footer

Can't Access Body Data From Fetch Put To Express Server

I'm fairly new to web development and I'm trying to send some JSON data to a node.js server running express but I'm getting this error: Failed to load http://localhost:8888/: Meth

Solution 1:

Make sure to use bodyParser (to get access to the data we have to use body-parser, it allows express to read the body). npm install --save body-parser

const bodyParser = require('body-parser');

app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());

Set up cors

app.use((req, res, next) => {
  res.header('Access-Control-Allow-Origin', '*');
  res.header(
    'Access-Control-Allow-Headers',
    'Origin, X-Requested-With, Content-Type, Accept, Authorization'
  );
  if (req.method === 'OPTIONS') {
    res.header('Access-Control-Allow-Methods', 'PUT, POST, PATCH, DELETE, GET');
    return res.status(200).json({});
  }
  next();
});

Make sure that you define the configurations beforedefining routes. Info about cors: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

Post a Comment for "Can't Access Body Data From Fetch Put To Express Server"