访问匿名函数之外的变量

时间:2015-12-25 17:12:38

标签: javascript

我有这个简单的代码

 orm: function (req, res) {

    // Send a JSON response


       Noder.query('SELECT * FROM crud ', function(err, results) {
        var all_rows = Noder.query('SELECT count(*) from crud ', function(err, the_rows) {
        return the_rows;
        });

         res.view('noder/orm', {
            layout: 'layout',
            allr:all_rows,
            post:results,
            title: 'This is the hi page title. '
        }); 
      });
   },

我用来获取mysql表中的所有行。但是在该函数中,我想要另一个函数来计算表中有多少行。我的变量var all_rows在我尝试显示时显示未定义。我该如何解决这个问题?。

1 个答案:

答案 0 :(得分:1)

这是因为在内部查询返回之前,您正在访问all_rows的值。

Noder.query是一个异步函数,因此,它的执行将被延迟,直到查询本身完成。同时,当您的内部查询仍在处理时,您的orm函数会一直快速停止并调用res.view

要解决此问题,您可以从内部查询中调用res.view