问答详情
源自:3-2 api设计

为什么安装了body-parser还无法获得name,deadline,content这三个变量?

总报错说:

TypeError: Cannot destructure property `name` of 'undefined' or 'null'.

提问者:HH2019 2020-03-25 08:47

个回答

  • weibo_慕用6006015
    2020-03-26 00:14:00

    // 按照官方文档
    // 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