1

我正在开发一个 Sails 应用程序,我希望某个模型来自不同的模式。但是,无论我做什么,我的所有模型都来自相同的模式,因此其中一个或另一个被实例化为一个不包含数据的空白表。

这是我的配置/adapters.js:

module.exports.adapters = {

 // If you leave the adapter config unspecified 
 // in a model definition, 'default' will be used.
 'default': 'agency',
  disk: {
     module: 'sails-disk'
   },
   agency:{
     module: 'sails-postgresql',
     host: 'localhost',
     user: 'postgres',
     password: '*****',
     database: 'transit_analyst',
     port: 5432,
     pool: true
   },
   routes:{
    module: 'sails-postgresql',
    host: 'localhost',
    user: 'postgres',
    password: '******',
    database: 'testdb',
    port: 5432,
    pool: true
  }

};

这是我的拳头模型 api/models/Agency.js

module.exports = {

adapter: 'agency',  
schema:true,
attributes: {
      date_last_updated: {type:'INTEGER'},
    feed_baseurl: {type:'STRING'},
    ...

}

};

这是我的第二个模型 api/models/Routes.js

module.exports = {

adapter: 'routes',
autoPK:false,
attributes: {

    route_id: {type:"STRING"},
    agency_id:{type:"STRING"},
            ...
            ...

    }
};

我已尝试按照文档 ( http://sailsjs.org/#!documentation/models )中的建议在适配器中使用 config:{} 。这可以改变使用哪个模式(我认为先处理哪个模式),但始终是它的一个或另一个。

4

1 回答 1

2

看起来像是在 Sails 中构建适配器的方式中的一个错误。我在这里报告了这个问题,它应该被修复0.9.5https ://github.com/balderdashy/sails/issues/939

于 2013-10-01T23:32:38.860 回答