总报错说:
TypeError: Cannot destructure property `name` of 'undefined' or 'null'.
// 按照官方文档
// 1. npm install body-parser -S
// 2. 引入 在app.js中
const bodyParser = require('body-parser');
// 3. 放入中间件
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: true});
// 4.发送请求的时候 可以使用 urlencoded 格式
// 5.如果发送的是json,那么需要加入header
Content-Type: application/json