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

来源:3-2 api设计

HH2019

2020-03-25 08:47

总报错说:

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

写回答 关注

1回答

  • 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


Nodejs全栈入门

基于node+mysql+react全栈实战

26586 学习 · 88 问题

查看课程

相似问题