📅  最后修改于: 2022-03-11 15:03:11.383000             🧑  作者: Mango
const express = require('express');
const app = express();
app.use(express.json({extended: false})); //This is the line that you want to add
app.post('/postroute', (req, res) => {
console.log('body :', req.body);
res.sendStatus(200);
});