续集:如何在“包含”中使用“范围”?

时间:2018-10-15 03:55:33

标签: javascript mysql sequelize.js

我想问问是否可以在include选项中使用关联模型的范围?

就我而言,有两种模型,UserCode

const ACTIVE_FIELDS = ['fullname', 'idCard']
const User = sequelize.define('User', {
  uid: DataTypes.STRING,
  fullname: DataTypes.TEXT,
  idCard: DataTypes.STRING,
  province: DataTypes.STRING,
}, {
  scopes: {
    activated: {
      where: ACTIVE_FIELDS.reduce((condition, field) => {
        condition[field] = {[sequelize.Op.ne]: null}
        return condition
      }, {}),
    },
    inProvinces: (provinces) => ({
      where: {
        province: {
          [sequelize.Op.in]: provinces,
        },
      },
    }),
  },
})

const Code = sequelize.define('Code', {
  id: {
    type: DataTypes.STRING,
    primaryKey: true,
  },
  uid: DataTypes.STRING,
}, {});

Code属于Useruid

Code.belongsTo(User, {
  foreignKey: 'uid',
  targetKey: 'uid',
  as: 'user',
})

我想随机选择Code个已激活用户,特别是省份用户。是否有任何方法可以重用activatedinProvinces范围,所以看起来像这样:

const randomCode = (provinces) =>
  Code.findOne({
    include: [{
      model: User,
      as: 'user',
      scopes: ['activated', {method: ['inProvinces', provinces]}],
      attributes: [],
      required: true,
    }],
    order: sequelize.random(),
  })

2 个答案:

答案 0 :(得分:3)

尝试将您的范围附加到实际模型上。...它对我有用。

Code.findOne({
  include: [{
    model: User.unscoped() 
  }],
})

@eee更新-更清楚:

Code.findOne({
  include: [{
    model: User.scope('activated', {method: ['inProvinces', provinces]}) 
  }],
})

我认为这应该有效...

答案 1 :(得分:0)

我实现了一个简单的辅助函数,以提取范围的where属性:

const scope = (model, scopeName, ...params) => {
  let scope = model.options.scopes[scopeName]
  if (!scope) { return }
  if (typeof scope === 'function') { scope = scope(...params) }

  return scope.where
}

在查询中,我可以使用:

Code.findOne({
  include: [{
    model: User,
    as: 'user',
    where: {
      ...scope(User, 'activated'),
      ...scope(User, 'inProvinces', provinces),
    },
  }],
})

此方法存在很多问题,因为它忽略了where以外的所有其他属性。希望有人能提出更好的解决方案。