书栈网 · BookStack 本次搜索耗时 0.244 秒,为您找到 469 个相关结果.
  • 一对一关联

    一对一关联 BelongsTo 外键 目标键 HasOne 源键 HasOne 和 BelongsTo 之间的区别 一对一关联 一对一关联是通过单个外键连接的两个模型之间的关联. BelongsTo BelongsTo 关联是在 source model 上存在一对一关系的外键的关联. 一个简单的例子是 Player 通过 p...
  • Expansion of models

    Expansion of models Indexes Expansion of models Sequelize Models are ES6 classes. You can very easily add custom instance or class level methods. class User extends Mod...
  • 高级概念

    高级概念 作用域 1:n n:m 用关联创建 BelongsTo / HasMany / HasOne 关联 用别名创建 BelongsTo 关联 HasMany / BelongsToMany 关联 高级概念 作用域 本节涉及关联作用域. 有关关联作用域与关联模型作用域的定义, 请参阅 作用域 . 关联作用域允许你在关联上放置作...
  • 模型与测试

    安装 password-hash 与测试 编写 Model 与 ava 测试文件 安装 password-hash 与测试 用来处理用户密码,不存储用户的明文密码,而是存储加密后的。 npm i password - hash - S 在 src 目录下面创建 db.ts , 定义模型我们使用define方法, 这些都是有代码提示的。 ...
  • Creating with Associations - 创建关联

    Creating with Associations - 创建关联 BelongsTo / HasMany / HasOne 关联 一个别名 BelongsTo 关联 HasMany / BelongsToMany 关联 Creating with Associations - 创建关联 只要所有元素都是新元素,就可以一步创建带有嵌套关联的实...
  • Node.js

    Quick Start: Node and TimescaleDB Goal Prerequisites Connect Node to TimescaleDB Step 1: Create your Node app Step 2: Configure the TimescaleDB database using Sequelize warning ...
  • Node

    Quick Start: Node and TimescaleDB Goal Prerequisites Connect Node to TimescaleDB Step 1: Create your Node app Step 2: Configure the TimescaleDB database using Sequelize Create...
  • Working with legacy tables

    Working with legacy tables Tables Fields Primary keys Foreign keys Working with legacy tables While out of the box Sequelize will seem a bit opinionated it's easy to work l...
  • 时间戳

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

    One-To-One associations BelongsTo Foreign keys Target keys HasOne Difference between HasOne and BelongsTo One-To-Many associations Belongs-To-Many associations Scopes 1:m ...