如何访问knex查询结果

时间:2016-03-20 07:51:59

标签: node.js express knex.js

使用带快递的knex,如何访问knex查询的结果?

示例:

var bots = []

response = knex.select('id', 'name').from('robots')
  .then(function(robots){
    console.log(robots);
    bots = robots
  });

console.log(bots)

这将记录机器人但不会更新bots数组,该数组为空。

编辑:

作为同步解决方法,在快速路线中,我将快速块卡在knex块中:

router.get('/robots', function (req, res) {

  response = knex.select('id', 'name').from('robots').then(function(bots){

    res.render('robots/index', {
      page_title: 'All Robots',
      robots: bots
    }); // res.render

  }); // knex.select

}); // router.get

这是推荐的模式吗?

2 个答案:

答案 0 :(得分:4)

knex使用Promises。具体来说,它使用http://bluebirdjs.com/docs/getting-started.htmlconsole.log(bots)将无效,因为它会立即被调用,而.then( ... )仅在knex查询成功调用并运行后调用。

您编辑的“同步解决方法”是运行Express响应的正确方法,但您无需将该查询设置为var response(有关详细信息,请参阅我对您的问题的评论)。

答案 1 :(得分:0)

我建议使用异步/等待功能。 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function

router.get('/robots', async function (req, res) {
  const bots = await knex.select('id', 'name').from('robots');
  res.render('robots/index', {
    page_title: 'All Robots',
    robots: bots
  }); // res.render 
}); // router.get