繁体   English   中英

维持多对多关系

[英]Sequelize many to many relationship

我需要一些帮助来解决多对多关系的问题。

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

确定where子句需要包含在模型的include中:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM