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

    时间戳 时间戳 默认情况下,Sequelize 会将 createdAt 和 updatedAt 属性添加到模型中,以便你能够知道数据库条目何时进入数据库以及何时被更新. 请注意,如果你使用 Sequelize 迁移,则需要将 createdAt 和 updatedAt 字段添加到迁移定义中: module . exports = ...
  • Timestamps

    Timestamps Timestamps By default, Sequelize will add the attributes createdAt and updatedAt to your model so you will be able to know when the database entry went into the db...
  • Global / universal hooks

    Global / universal hooks Default Hooks (Sequelize.options.define) Permanent Hooks (Sequelize.addHook) Connection Hooks Global / universal hooks Global hooks are hooks which ...
  • Getting Started - 入门

    Getting Started - 入门 安装 连接到数据库 测试连接 关闭连接 术语约定 阅读文档的提示 新数据库与现有数据库 记录日志 Promises 和 async/await Getting Started - 入门 在本教程中,你将进行学习 Sequelize 的简单设置. 安装 Sequelize 的使用可以...
  • 一对多关联 (hasMany)

    一对多关联 (hasMany) 一对多关联 (hasMany) 一对多关联将一个来源与多个目标连接起来. 而多个目标接到同一个特定的源. class User extends Model {} User . init ({ /* ... */ }, { sequelize , modelName : 'user' }...
  • Sub Queries

    Sub Queries Using sub-queries for complex ordering Sub Queries Consider you have two models, Post and Reaction , with a One-to-Many relationship set up, so that one post has ...
  • Home

    Example usage Sequelize Sequelize is a promise-based ORM for Node.js and io.js. It supports the dialects PostgreSQL, MySQL,MariaDB, SQLite and MSSQL and features solid transact...
  • Getters, Setters & Virtuals - 获取器, 设置器 & 虚拟字段

    Getters, Setters & Virtuals - 获取器, 设置器 & 虚拟字段 获取器 设置器 组合获取器和设置器 虚拟字段 getterMethods 和 setterMethods Getters, Setters & Virtuals - 获取器, 设置器 & 虚拟字段 Sequelize 允许你为模型的属性定义自定...
  • 替换

    替换 替换 查询中的替换可以通过两种不同的方式完成:使用命名参数(以: 开头),或者由? 表示的未命名参数. 替换在options对象中传递. 如果传递一个数组, ? 将按照它们在数组中出现的顺序被替换 如果传递一个对象, :key 将替换为该对象的键. 如果对象包含在查询中找不到的键,则会抛出异常,反之亦然. sequelize . qu...
  • PostgreSQL

    PostgreSQL Ranges PostgreSQL Let's say the name of the new datatype is pg_new_type in the postgres database. That name has to be mapped to DataTypes.NEWTYPE . Additionally, i...