使用带有Express的NodeJS从MongoDB中检索数据

时间:2015-01-17 00:46:23

标签: javascript node.js mongodb express

好的,所以在过去几天我开始搞乱Node(因为我觉得我应该学到一些实际上有用的东西,可能会让我找到一份工作)。现在,我知道如何提供页面,基本路由等。尼斯。但我想学习如何查询数据库以获取信息。

现在,我正在尝试构建一个充当webcomic网站的应用。因此,理论上,当我输入网址http://localhost:3000/comic/<comicid>

时,应用程序应查询数据库

我的app.js文件中有以下代码:

router.get('/', function(req, res) {  
    var name = getName();
    console.log(name); // this prints "undefined"

    res.render('index', {
        title: name,
        year: date.getFullYear()
    });
});

function getName(){
    db.test.find({name: "Renato"}, function(err, objs){
    var returnable_name;
        if (objs.length == 1)
        {
            returnable_name = objs[0].name;
            console.log(returnable_name); // this prints "Renato", as it should
            return returnable_name;
        }
    });
}

通过这种设置,我得到console.log(getName())输出&#34; undefined&#34;在控制台中,但我不知道为什么它不会获得查询在数据库中实际可以找到的唯一元素。

我尝试在搜索中搜索,甚至在Google中搜索示例,但没有成功。

我该如何从对象中获取参数名称?

2 个答案:

答案 0 :(得分:2)

NodeJs是异步的。您需要回调或Promise

router.get('/', function(req, res) {
    var name = '';
    getName(function(data){
        name = data;
        console.log(name);

        res.render('index', {
            title: name,
            year: date.getFullYear()
        });
    });
});

function getName(callback){
    db.test.find({name: "Renato"}, function(err, objs){
        var returnable_name;
        if (objs.length == 1)
        {
            returnable_name = objs[0].name;
            console.log(returnable_name); // this prints "Renato", as it should
            callback(returnable_name);
        }
    });
}

答案 1 :(得分:1)

getName函数正在使用db.test.find对Mongo进行异步调用。您可以通过在异步函数之后添加console.log来查看此内容。像这样:

function getName(){
  db.test.find({name: "Renato"}, function(err, objs){
    var returnable_name;
    if (objs.length == 1) {
      returnable_name = objs[0].name;
      console.log(returnable_name);
      return returnable_name;
    }
  });
  console.log('test'); // <!-- Here
}

在所有可能性中,这将输出:

test
Renato

您需要为getName功能提供回调。

router.get('/', function(req, res) {  
  getName(function(err, name) {
    res.render('index', {
        title: name,
        year: date.getFullYear()
    });
  })'
});

function getName(cb){
  db.test.find({name: "Renato"}, function(err, objs){
    if(err) cb(err);
    var returnable_name;
    if (objs.length == 1) {
      returnable_name = objs[0].name;
      return cb(null, returnable_name);
    } else {
      // Not sure what you want to do if there are no results
    }
  });
}