教程 > sequelize 中文教程 > 阅读:31

sequelize 作用域——迹忆客-ag捕鱼王app官网

作用域用于帮助你重用代码。 你可以定义常用查询,并指定诸如 where, include, limit 等参数。

本篇文章涉及模型作用域。 你可能也对关联作用域感兴趣,它们相似但又不同。


定义

作用域在模型定义中定义,可以是查找器对象,也可以是返回查找器对象的函数 - 默认作用域除外,该作用域只能是一个对象:

class project extends model {}
project.init({
  // 属性
}, {
  defaultscope: {
    where: {
      active: true
    }
  },
  scopes: {
    deleted: {
      where: {
        deleted: true
      }
    },
    activeusers: {
      include: [
        { model: user, where: { active: true } }
      ]
    },
    random() {
      return {
        where: {
          somenumber: math.random()
        }
      }
    },
    accesslevel(value) {
      return {
        where: {
          accesslevel: {
            [op.gte]: value
          }
        }
      }
    },
    sequelize,
    modelname: 'project'
  }
});

你也可以在定义模型后通过调用 yourmodel.addscope 添加作用域。 这对于具有包含的作用域特别有用,其中在定义另一个模型时可能未定义包含中的模型。

始终应用默认作用域。 这意味着,使用上面的模型定义,project.findall() 将创建以下查询:

select * from projects where active = true

可以通过调用 .unscoped().scope(null), 或调用另一个作用域来删除默认作用域:

await project.scope('deleted').findall(); // 删除默认作用域
select * from projects where deleted = true

也可以在作用域定义中包括作用域模型。 这样可以避免重复 include , attributeswhere 定义。 使用上面的示例,并在包含的用户模型上调用 active 作用域(而不是直接在该包含对象中指定条件):

// 上例中定义的 `activeusers` 作用域也可以通过以下方式定义:
project.addscope('activeusers', {
  include: [
    { model: user.scope('active') }
  ]
});

使用

通过在模型定义上调用 .scope,并传递一个或多个作用域的名称来应用作用域。.scope 返回具有所有常规方法的功能齐全的模型实例:.findall.update.count.destroy 等。你可以保存此模型实例并在以后重用:

const deletedprojects = project.scope('deleted');
await deletedprojects.findall();
// 以上相当于:
await project.findall({
  where: {
    deleted: true
  }
});

作用域适用于 .find.findall.count.update.increment.destroy

作用域可以通过两种方式调用。 如果作用域不带任何参数,则可以正常调用它。 如果作用域接受参数,则传递一个对象:

await project.scope('random', { method: ['accesslevel', 19] }).findall();

生成 sql:

select * from projects where somenumber = 42 and accesslevel >= 19

合并

通过将作用域数组传递给 .scope 或将作用域作为连续参数传递,可以同时应用多个作用域。

// 这两个是等效的
await project.scope('deleted', 'activeusers').findall();
await project.scope(['deleted', 'activeusers']).findall();

生成 sql:

select * from projects
inner join users on projects.userid = users.id
where projects.deleted = true
and users.active = true

如果要在默认作用域之外应用另一个作用域,请将关键字 defaultscope 传递给 .scope

await project.scope('defaultscope', 'deleted').findall();

生成 sql:

select * from projects where active = true and deleted = true

调用多个合并作用域时,后续合并作用域中的键将覆盖先前合并作用域中的键(类似于 object.assign),除了将合并的 whereinclude 之外。 考虑两个作用域:

yourmode.addscope('scope1', {
  where: {
    firstname: 'bob',
    age: {
      [op.gt]: 20
    }
  },
  limit: 2
});
yourmode.addscope('scope2', {
  where: {
    age: {
      [op.gt]: 30
    }
  },
  limit: 10
});

使用 .scope('scope1', 'scope2') 将产生以下 where 子句:

where firstname = 'bob' and age > 30 limit 10

注意 limit 和 age 如何被 scope2 覆盖,而保留 firstname.limit, offset, order, paranoid, lockraw 字段被覆盖,而 where 则被浅合并(这意味着相同的键将被覆盖)。包含的合并策略将在后面讨论。

注意,多个应用作用域的 attributes 键以始终保留 attributes.exclude 的方式合并。 这允许合并多个合并作用域,并且永远不会泄漏最终合并作用域中的敏感字段。

当将查找对象直接传递给作用域模型上的 findall(和类似的查找器)时,适用相同的合并逻辑:

project.scope('deleted').findall({
  where: {
    firstname: 'john'
  }
})

生成的 where 子句:

where deleted = true and firstname = 'john'

在这里, deleted 作用域与查找器合并。 如果我们将 where: { firstname: 'john', deleted: false } 传递给查找器,则 deleted 作用域将被覆盖。

合并 include

include 将基于所包含的模型进行递归合并. 这是 v5 上添加的功能非常强大的合并,并通过示例更好地理解.

考虑模型 foo, bar, baz 和 qux,它们具有一对多关联,如下所示:

const foo = sequelize.define('foo', { name: sequelize.string });
const bar = sequelize.define('bar', { name: sequelize.string });
const baz = sequelize.define('baz', { name: sequelize.string });
const qux = sequelize.define('qux', { name: sequelize.string });
foo.hasmany(bar, { foreignkey: 'fooid' });
bar.hasmany(baz, { foreignkey: 'barid' });
baz.hasmany(qux, { foreignkey: 'bazid' });

现在,考虑在 foo 上定义的以下四个作用域:

foo.addscope('includeeverything', {
  include: {
    model: bar,
    include: [{
      model: baz,
      include: qux
    }]
  }
});
foo.addscope('limitedbars', {
  include: [{
    model: bar,
    limit: 2
  }]
});
foo.addscope('limitedbazs', {
  include: [{
    model: bar,
    include: [{
      model: baz,
      limit: 2
    }]
  }]
});
foo.addscope('excludebazname', {
  include: [{
    model: bar,
    include: [{
      model: baz,
      attributes: {
        exclude: ['name']
      }
    }]
  }]
});

这四个作用域可以很容易地进行深度合并,例如,通过调用 foo.scope('includeeverything', 'limitedbars', 'limitedbazs', 'excludebazname').findall(),这完全等同于调用以下代码:

await foo.findall({
  include: {
    model: bar,
    limit: 2,
    include: [{
      model: baz,
      limit: 2,
      attributes: {
        exclude: ['name']
      },
      include: qux
    }]
  }
});
// 以上等同于:
await foo.scope([
  'includeeverything',
  'limitedbars',
  'limitedbazs',
  'excludebazname'
]).findall();

观察如何将四个作用域合并为一个。 作用域的 include 根据所包含的模型进行合并。 如果一个作用域包含模型 a,另一个作用域包含模型 b,则合并结果将同时包含模型 a 和 b。另一方面,如果两个作用域都包含相同的模型 a,但具有不同的参数(例如嵌套包含或其他属性) ,这些将被递归合并,如上所示。

上面说明的合并以完全相同的方式工作,而不管应用于作用域的顺序如何。 如果某个选项由两个不同的作用域设置,则顺序只会有所不同 - 上面的示例不是这种情况,因为每个作用域执行的操作都不相同。

这种合并策略还可以与传递给 .findall.findone 等的参数完全相同。

查看笔记

扫码一下
查看教程更方便
网站地图