首页 文章

续集许多关系

提问于
浏览
0

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

我需要模型,客户和服务(多对多) . 现在我想加载一个客户端提供的所有服务(通过客户端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

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

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

相关问题