续集许多关系

时间:2015-03-14 13:10:45

标签: node.js postgresql sequelize.js

我需要一些帮助来了解许多关系的续集。

我需要模型,客户和服务(多对多)。现在我想加载一个客户端提供的所有服务(通过客户端ID)。包含条件的情况如何实现呢?

服务:

var Service = sequelize.define('service', {
    title: {
      type: DataTypes.STRING(200),
      allowNull: false
    }
  },{
    paranoid: true,
    underscored: true,
    classMethods: {
      associate:function(models){
          Service.belongsToMany(models.client, { through: 'client_services' });
          Service.hasMany(models.rule, { foreignKey: 'service_id' })
      }
    }
  });

客户端:

 var Client = sequelize.define('client', {
    title: {
      type: DataTypes.STRING(200),
      allowNull: false
    },
    company: {
        type: DataTypes.STRING(200),
        allowNull: false
    },
    vendor: {
      type: DataTypes.BOOLEAN,
      allowNull: false,
      defaultValue: false
    },
    consumer: {
      type: DataTypes.BOOLEAN,
      allowNull: false,
      defaultValue: true
    },
    address_id: {
      type: DataTypes.INTEGER,
      allowNull: true
    }
  },{
    paranoid: true,
    underscored: true,
    classMethods: {
      associate:function(models){
          Client.hasMany(models.service, { through: 'client_services'});
      }
    }
  });

在我的控制器中(不工作错误:[错误:客户端(客户端)未与服务关联!]):

var condition = {
      where: { 'client.id': req.user.client_id },
      include: [{ model: Client, as: 'client' }]
    }
Service.findAll(condition)
.then(responseWithResult(res))

1 个答案:

答案 0 :(得分:0)

好的where子句需要包含在模型的包含中:

var condition = {
      include: [{ model: Client, where: { 'id': req.user.client_id } }]
    }
Service.findAll(condition)
.then(responseWithResult(res))