出现该问题
Cannot read property 'movie' of undefined
Cannot read property 'movie' of undefined
2017-01-17
// 此模块已经出express中抽出 用于替代之前express.bodyParser()var bodyParser = require('body-parser');app.use(bodyParser.json()); // for parsing application/jsonapp.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencoded
老的写法express.bodyParser() 不能用了需要手动引入 第一个是json格式处理 第二个是form数据处理
举报