查询联结表而不在Sequelize中获取这两个关联

时间:2016-04-04 07:33:16

标签: javascript mysql node.js express sequelize.js

考虑以下模型:

var User = sequelize.define('User', {
  _id:{
    type: Datatypes.INTEGER,
    allowNull: false,
    primaryKey: true,
    autoIncrement: true
  },
  name: Datatypes.STRING,
  email:{
    type: Datatypes.STRING,
    unique: {
      msg: 'Email Taken'
    },
    validate: {
      isEmail: true
    }
  }
});

var Location= sequelize.define('Location', {
  _id:{
    type: Datatypes.INTEGER,
    allowNull: false,
    primaryKey: true,
    autoIncrement: true
  },
  name: Datatypes.STRING,
  address: type: Datatypes.STRING
});

Location.belongsToMany(User, {through: 'UserLocation'});
User.belongsToMany(Location, {through: 'UserLocation'});

有没有办法查询UserLocation表格中的特定UserId并获取相应的Locations。类似的东西:

SELECT * FROM Locations AS l INNER JOIN UserLocation AS ul ON ul.LocationId = l._id WHERE ul.UserId = 8

从我能找到的你可以做类似的事情:

Location.findAll({
  include: [{
    model: User,
    where: {
      _id: req.user._id
    }
  }]
}).then( loc => {
  console.log(loc);
});

但是,当我不需要任何用户信息时,这会返回LocationsUserLocation联结和User加入User表的内容,我只需要该用户的Locations。我所做的是工作,但是,优先选择针对联结表的查询,而不是User表上的查找。

我希望这很清楚。提前谢谢。

修改

我实际上最终以不同的方式实现了这一点。但是,我仍然会将此作为一个问题,因为这应该是可能的。

1 个答案:

答案 0 :(得分:3)

将联结表声明为单独的类,类似这样的

var UserLocation = sequelize.define('UserLocation', {
  //you can define additional junction props here
});

User.belongsToMany(Location, {through: 'UserLocation', foreignKey: 'user_id'});
Location.belongsToMany(User, {through: 'UserLocation', foreignKey: 'location_id'});

然后您可以像查询任何其他模型一样查询联结表。