异步而不是加入 - 我在作弊吗?



我一直在尝试使用 postgres 中的json_agg复制这组异步并行查询。

在我心里,虽然异步方法让我得到了我想要的结果,但我觉得这是作弊,将来会给我带来痛苦。

下面我包含了我当前实现的结果。我怎样才能用json_agg实现同样的目标?

快速路线

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

  async.parallel({
      records: function(parCb) {
        var query = knex('records').select('title','id').orderBy(knex.raw('RANDOM()')).limit(5)
        query.then(function(results) {
          parCb(null, results);
        });
      },
      collections: function(parCb) {
        var query = knex('collections').select('name','id').orderBy('name')
        query.then(function(results){
          console.log(results)
          parCb(null, results);
        });
      },
    },
    function(err, results) {
      res.render('index.html', {
        title: 'Welcome',
        data: results
      });
    });
});

输出

{ collection: 
   { id: 31,
     slug: 'BAR',
     name: 'Barker',
     long_name: 'Barker',
     copyright: '',
     description: null,
     notes: '',
     createdAt: Tue Jan 05 2016 16:47:35 GMT+0000 (UTC),
     updatedAt: Tue Jan 05 2016 15:32:55 GMT+0000 (UTC) },
  records: 
   [ { title: 'Whiddon Down: general view, Tawton, South',
       id: 12595 },
     { title: 'STOKE IN TEIGNHEAD', id: 13937 },
     { title: 'Teign Estuary', id: 104573 },
     { title: 'Lydford Village', id: 106650 },
     { title: 'Metheral hut circle before submersion by Fernworthy Reservoir',
       id: 1467 } ] }

首先,不要混合异步库和承诺。这样可以避免不必要的疼痛。

如果你使用的库之一是基于承诺的(如knex),我建议你放弃异步,使用适当的承诺库(像Bluebird这样的库)并使用它。

var Promise = require('bluebird');
var knex = require('knex');
var express = require('express');
var router = express.Router();
router.get('/', function(req, res) {
  Promise.all([
    knex('records').select('title','id').orderBy(knex.raw('RANDOM()')).limit(5),
    knex('collections').select('name','id').orderBy('name')
  ]).then(function (results) {
    res.render('index.html', {
      title: 'Welcome',
      data: {
        records: results[0],
        collections: results[1]
      }
    });
  });
});

不过,恐怕我不能在这里说太多关于json_agg的事情。

相关内容

  • 没有找到相关文章

最新更新