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

    Configuration Configuration You can also influence the way Sequelize handles your column names: class Bar extends Model {} Bar . init ({ /* bla */ }, { ...
  • Database synchronization

    Database synchronization Database synchronization When starting a new project you won't have a database structure and using Sequelize you won't need to. Just specify your model...
  • 3.5 多态一对多

    多态一对多 例子 新建 comment.ts 新建 post.ts 新建 image.ts 在 index.ts 里面添加如下代码 多态一对多 在面向对象编程里面有一个特性就是多态,多态就是适应多种情况,有的时候我们有这样一个需求。评论需求,因为网站本来就不大,所以我期望所有的评论都放在一个表里面,可以评论图片,评论文章 等等。 首先评论...
  • Raw queries

    Replacements Bind Parameter As there are often use cases in which it is just easier to execute raw / already prepared SQL queries, you can utilize the function sequelize.query ...
  • Migrations - 迁移

    Migrations - 迁移 安装 CLI 项目启动 结构 创建第一个模型(和迁移) 运行迁移 撤消迁移 创建第一个种子 运行种子 撤销种子 高级专题 .sequelizerc 文件 动态配置 使用 Babel 安全提示 存储 迁移存储 种子储存 配置连接字符串 程序用法 Migrations - 迁移 就...
  • Import

    Import Import You can also store your model definitions in a single file using the import method. The returned object is exactly the same as defined in the imported file's fun...
  • MySQL

    MySQL MySQL 为了让 Sequelize 与 MySQL 一起更好地工作,你需要安装 mysql2@^1.5.2 或更高版本. 一旦完成,你可以像这样使用它: const sequelize = new Sequelize ( 'database' , 'username' , 'password' , { ...
  • Upgrade to V4

    Upgrade to V4 Changelog Breaking Changes Node General Config / Options Data Types Transactions / CLS Raw Queries Others Upgrade to V4 Sequelize v4 is the current relea...
  • Promises 和 async/await

    Promises 和 async/await Promises 和 async/await 如上所示,通常普遍使用 .then 调用,Sequelize 普遍使用 Promise. 这意味着,如果你的 Node 版本支持它,你可以对使用 Sequelize 进行的所有异步调用使用 ES2017 async/await 语法. 此外,所有 Seq...
  • Hooks - 钩子

    Hooks - 钩子 操作清单 声明 Hook 移除 Hook 全局 / 通用 Hook Sequelize.options.define (默认 hook) Sequelize.addHook (常驻 hook) 实例 Hook 模型 Hook 关联 关于事务的注意事项 内部事务 Hooks - 钩子 Hook(也称为生命周期...