自我引用与Objection.js的多对多关系

时间:2016-06-07 11:46:30

标签: node.js objection.js

我有CurrencyExchangeRate个数据库表,如下所示:

CREATE TABLE Currency (id INT, code VARCHAR(3), name TEXT);    
CREATE TABLE ExchangeRate (baseCurrencyId INT, counterCurrencyId INT, rate FLOAT);

INSERT INTO Currency (id, code, name) VALUES 
  (1, 'USD', 'US Dollars'),
  (2, 'AUD', 'Australian Dollars');
INSERT INTO ExchangeRate (baseCurrencyId, counterCurrencyId, rate) VALUES
  (1, 2, 1.342),
  (2, 1, 0.745);

给定baseCurrency Currency.id和counterCurrency Currency.code,我想找到相应的交换rate counterCurrency name

建立这种关系的最有效方法是什么? (我使用Objection.js v0.4.0)

1 个答案:

答案 0 :(得分:5)

我在表名和列名中添加引号以使它们区分大小写:

CREATE TABLE "Currency" (
  id INT, code VARCHAR(3), name TEXT
);    
CREATE TABLE "ExchangeRate" (
  "baseCurrencyId" INT, "counterCurrencyId" INT, rate FLOAT
);

INSERT INTO "Currency" (id, code, name) VALUES 
  (1, 'USD', 'US Dollars'),
  (2, 'AUD', 'Australian Dollars');
INSERT INTO "ExchangeRate" ("baseCurrencyId", "counterCurrencyId", rate) VALUES
  (1, 2, 1.342),
  (2, 1, 0.745);

您可以对连接表中存储的额外参数的多对多关系进行建模:

const knex = require('knex')({ 
  client: 'pg', 
  connection: 'postgres:///objection_test'
});
const { Model } = require('objection');
const Promise = require('bluebird');

class Currency extends Model {

  static get tableName() { return 'Currency'; }

  static get relationMappings() {
    return {
      currencyWithRate: {
        relation: Model.ManyToManyRelation,
        modelClass: Currency,
        join: {
          from: 'Currency.id',
          through: {
            from: 'ExchangeRate.baseCurrencyId',
            to: 'ExchangeRate.counterCurrencyId',
            extra: ['rate']
          },
          to: 'Currency.id'
        }
      }
    };
  }
}

const boundModel = Currency.bindKnex(knex);

boundModel.query().then(currencies => {
  // get related currencies for each 
  return Promise.all(currencies.map(cur => {
    return Promise.join(cur, cur.$relatedQuery('currencyWithRate'),
      (cur, exchangeRateCurrency) => {
        return {
          currency: cur,
          exchangeRateCurrency: exchangeRateCurrency
        };
      });
  }));
}).then(result => {
  console.dir(result, { depth: null});
}).finally(() => {
  return knex.destroy();
});

让我们假设上面的代码是test.js:

Mikaels-MacBook-Pro-2: mikaelle$ node test.js 
[ { currency: 
     AnonymousModelSubclass {
       id: 1,
       code: 'USD',
       name: 'US Dollars',
       currencyWithRate: [ AnonymousModelSubclass { id: 2, code: 'AUD', name: 'Australian Dollars', rate: 1.342 } ] },
    exchangeRateCurrency: [ AnonymousModelSubclass { id: 2, code: 'AUD', name: 'Australian Dollars', rate: 1.342 } ] },
  { currency: 
     AnonymousModelSubclass {
       id: 2,
       code: 'AUD',
       name: 'Australian Dollars',
       currencyWithRate: [ AnonymousModelSubclass { id: 1, code: 'USD', name: 'US Dollars', rate: 0.745 } ] },
    exchangeRateCurrency: [ AnonymousModelSubclass { id: 1, code: 'USD', name: 'US Dollars', rate: 0.745 } ] } ]
Mikaels-MacBook-Pro-2: mikaelle$ 

看起来$relatedQuery()还会将查询过的对象修补为要求其关系的Model

相关问题