NodeJS :: TypeError:无法读取未定义

时间:2017-05-12 15:05:36

标签: javascript node.js express mean-stack

我正在从教程中学习MEAN堆栈。当我尝试使用本地主机时,出现错误。

  

TypeError:无法读取未定义的属性“first_name”

     router.post上的

(/var/www/html/mean/contactlist/routes/route.js:17:28)

我在互联网上发现了一些类似的问题。但我没有找到正确的解决方案。

这是我的 app.js 文件

//importing modules
var express =  require('express');
var mongoose = require('mongoose');
var bodyparser = require('body-parser');
var cors = require('cors');
var path = require('path'); //core module 


// calling express method
var app = express(); 


//connect to mongodb
mongoose.connect('mongodb://localhost/27017/contactlist');

//on connection
mongoose.connection.on('connected', () => {
    console.log("connected to database database mongodb @ 27017 ");
});

mongoose.connection.on('error', (err) => {

    if(err){
        console.log('Error in Database connection : ' + err);
    }
});

//adding middleware cors
app.use(cors());

//adding body parser
app.use(bodyparser.json());

//adding static files
app.use(express.static(path.join(__dirname, 'public')));

//setting port no 
const port = 3000;


//routing
var route = require('./routes/route'); 

//using the route
app.use('/api', route); 


//testing server
app.get('/', (req, res)=>{

    res.send('foobar');

});

//binding the server with port no (callback)

app.listen(port,() =>{
    console.log('Server Started at Port : '+ port);


});

我从stackOverflow解决方案中找到了

我应该在路由

之前使用以下行
app.use(bodyparser.json());

所以我改变了它。

我的 ./ routes / route.js

const express = require('express');
const router = express.Router();

const Contact = require('../models/contacts');

//Retrieving contacts
router.get('/contacts', (res, req, next) => {
    contact.find(function(err,contacts){
        res.json(contacts);
    })

});

//Add contact
router.post('/contact', (res, req, next) => {
    let newContact = new Contact({
        first_name:req.body.first_name,
        last_name:req.body.last_name,
        phone:req.body.phone
    });



    newContact.save((err,contact) => {

        if(err){
            res.json({msg : 'Failed to add contact'});
        }
        else{
           res.json({msg : 'Contact added successfully'}); 
        }

    });
});


//Deleting Contact
router.delete('/contact/:id', (res, req, next) => {
    contact.remove({_id: req.params.id }, function(err, result){

        if(err){
            res.json(err);
        }
        else{
            res.json(result);
        }

    });
});


module.exports = router;
来自 package.json

依赖关系

"dependencies": {
    "body-parser": "^1.17.1",
    "cors": "^2.8.3",
    "express": "^4.15.2",
    "mongoose": "^4.9.8"
  }

nodejs的版本是

v7.10.0

我使用Postman来测试API

所以我使用POST方法测试并遵循内容类型选项。

 {"Content-Type":"application/x-www-form-urlencoded"}

这是我的样本输入

{ 
   "first_name" : "RENJITH",
   "last_name"  : "VR",
   "phone" :  "1234567890"
}

是版本问题吗?请建议我正确的编码方式。

3 个答案:

答案 0 :(得分:2)

您的内容类型为{"Content-Type":"application/x-www-form-urlencoded"} 为了支持URL编码的数据体,您需要使用它:

app.use(bodyparser.urlencoded({     // to support URL-encoded bodies
  extended: true
}));

您使用的是JSON编码数据,例如POST: {"name":"foo","color":"red"}

编辑:

路线参数的顺序错误。它不是router.post('/contact', (res, req, next)

实际上router.post('/contact', (req, res, next)

第一个参数是请求,第二个参数是响应。

答案 1 :(得分:1)

只需在路线(app.js)的顶部移动正文分析行

app.use(bodyparser.json());

app.use('/api',route);

答案 2 :(得分:0)

我面临着同样的问题,但这就是为我解决的方法

在文件顶部,在使用任何路由之前和之后使用constantConcurrentUsers(0) during (20)语句

require

然后在发布请求路径中使用app.use(bodyParser.urlencoded({extended: true})) app.use(bodyParser.json())

这是示例代码:

res.json()