如何在Express POST路由中使用Mongoose save方法

时间:2015-10-05 21:03:54

标签: node.js rest express mongoose

我是Express和Node的新手,有一个我不明白的问题。我已经定义了两个不同的Express路由来为两个不同的Mongoose数据模型发出POST请求。一个正常工作并正常返回,另一个在Heroku日志中返回状态204然后超时,就像保存甚至没有执行...

这是" Yak"模型和关联的POST路由,它保存对象并将预期结果返回给我的ANgular客户端:

模型定义:

var mongoose = require('mongoose');
var Schema = mongoose.Schema;

var YakSchema   = new Schema({
catagory: String,
loc: {
    type: [Number],  // [<longitude>, <latitude>]
    index: '2d'      // create the geospatial index
},
yakName:String,
yakDescription:String,
yakPhone:String,
yakOwner:String
});

module.exports = mongoose.model('Yak', YakSchema);

和POST路线

router.route('/yaks')

.post(function(req, res) {
    var yak = new Yak();

    //First, need to get lat, lng from the address
    var addressString = req.body.city + ", " + req.body.street + ", " + req.body.state + ", " + req.body.postalcode;
    geocoder.geocode(addressString, function (err, data) {

        //error handling needed
        if (err){
            res.status(500).json({
                status:500,
                error:err
            });
            res.end();
        }

        var coord = data['results'][0]['geometry']['location'];
        var lat = coord.lat;
        var lng = coord.lng;

        //Second, use the Model to save the yak with a geoJSON point

        yak.catagory = req.body.catagory;
        yak.loc = [lng, lat];
        yak.yakName = req.body.yakName;
        yak.yakDescription = req.body.yakDescription;
        yak.yakPhone = req.body.yakPhone;
        yak.yakOwner = req.body.yakOwner;
        yak.save(function (err) {
            if (err) {
                res.status(500);
                res.json({
                    status: 500,
                    error: err
                });
                res.end();
            }
            else {
                res.json({
                    status: 200,
                    yak: yak
                });
                res.end();
            }
        });
    });
});

以下是不起作用的用户模型和用户路线

var mongoose = require('mongoose');
var Schema = mongoose.Schema;


var UserSchema = new Schema({
username: { type: String, required: true, index: { unique: true } },
password: { type: String, required: true }
});

module.exports = mongoose.model('User', UserSchema);

和POST路线

   router.route('/users')
    .post(function(req, res) {


    console.log(req.body.username);
    console.log(req.body.password);


    var user = new User();
    user.username = req.body.username;
    user.password = req.body.password;

    console.log(user);

    user.save(function(err){

        if (err) {
            res.status(500);
            res.json({
                status: 500,
                error: err
            });
            res.end();
        }
        else {
            res.json({
                status: 200,
                user: user
            });
            res.end();
        }
    });
});

我看到的唯一区别是&#34; yak&#34;的保存方法。 route被包装在先前执行的对位置进行地理编码的方法的回调中。用户路线不在回叫中。

这&#34;感觉&#34;对我来说,与节点的异步性质有关,但是新的我不确定。任何帮助都非常赞赏

修改*

以下是POST路由中但在保存之前的控制台.log的结果。我确实在保存中添加了一个console.log,但它永远不会被注销......

以下是在POST路由中但在保存之前的用户名和密码的console.log的结果。我确实在save方法中添加了一个console.log,它从未被调用....

heroku[router]: at=info method=OPTIONS     path="/api/users" host=frozen-       
peak-5921.herokuapp.com request_id=6230237d-7adc-4a51-8a26-03da99f8b7e3    
fwd="74.202.146.157" dyno=web.1 connect=2ms service=14ms status=204 bytes=289
 app[web.1]: asd
 app[web.1]: me@mail.com
 app[web.1]: { password: 'asd',
 app[web.1]:   username: 'me@mail.com',
 app[web.1]:   _id: 5612e098a7f49c1100000001 }
 heroku[router]: at=error code=H12 desc="Request timeout" method=POST 
path="/api/users" host=frozen-peak-5921.herokuapp.com request_id=f6c0fde8-   
c2e4-49e5-ad65-ba6afed3b731 fwd="74.202.146.157" dyno=web.1 connect=1ms 
service=30001ms status=503 byte

1 个答案:

答案 0 :(得分:0)

好的,哇....所以我在Heroku上使用MongoLab沙箱实例。 9月30日,MongoLab更新了MongoDB的所有沙箱实例。一旦我将package.json文件mongoose依赖项更改为“*”,安装了npm install以安装最新版本的mongoose并重新部署到Heroku,这一切都有效。所以这是由于MongoDB版本和猫鼬版本之间不兼容造成的。

对这种效果进行某种有意义的错误处理会很好....