书栈网 · BookStack 本次搜索耗时 0.032 秒,为您找到 464 个相关结果.
  • Overview

    Mixin Associations hasOne(target, [options]) belongsTo(target, [options]) hasMany(target, [options]) belongsToMany(target, [options]) Mixin Associations View code Cre...
  • Instances

    Instances Building a non-persistent instance Creating persistent instances Updating / Saving / Persisting an instance Destroying / Deleting persistent instances Working in bulk...
  • Association Scopes - 关联作用域

    Association Scopes - 关联作用域 概念 示例 在标准作用域内实现相同的行为 Association Scopes - 关联作用域 本节涉及关联作用域,它们与模型作用域 类似但不相同. 关联作用域既可以放在关联的模型(关联的目标)上,也可以放在多对多关系的联结表中. 概念 与模型作用域 如何自动应用于模型静态调用(...
  • 测试连接

    测试连接 关闭连接 测试连接 你可以使用 .authenticate() 函数来测试连接. sequelize . authenticate () . then (() => { console . log ( 'Connection has been established successfully....
  • 2.2 定义一个模型

    定义一个模型 定义一个模型 我们要定义一个模型,首先我们会用到define , 它的返回值类似是 Model<TInstance, TAttributes> 。 define < TInstance , TAttributes >( modelName : string , attributes : DefineAttributes...
  • Scopes - 作用域

    Scopes - 作用域 定义 使用 合并 合并 Include Scopes - 作用域 作用域用于帮助你重用代码. 你可以定义常用查询,并指定诸如 where , include , limit 等参数. 本指南涉及模型作用域. 你可能也对关联作用域指南 感兴趣,它们相似但又不同. 定义 作用域在模型定义中定义,可以是查找器...
  • After commit hook

    After commit hook After commit hook A transaction object allows tracking if and when it is committed. An afterCommit hook can be added to both managed and unmanaged transact...
  • Polymorphic Associations - 多态关联

    Polymorphic Associations - 多态关联 概念 配置一对多多态关联 多态延迟加载 多态预先加载 注意 - 可能无效的 预先/延迟 加载! 配置多对多多态关联 在目标模型上应用作用域 Polymorphic Associations - 多态关联 *注意: 如本指南所述,在 Sequelize 中使用多态关联时应...
  • Concurrent/Partial transactions

    Concurrent/Partial transactions Without CLS enabled Concurrent/Partial transactions You can have concurrent transactions within a sequence of queries or have some of them excl...
  • Instance

    Class Instance isNewRecord -> Boolean Model() -> Model sequelize() -> Sequelize where() -> Object getDataValue(key) -> any setDataValue(key, value) get([key], [options]) -> O...