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

    MySQL RESTful API Passport Socket.IO Assets TypeScript Quick Start Progressive Development RESTful API Boilerplate Type Description You can use boilerplate type li...
  • 秘籍

    秘籍 SQL (TypeORM) 入门 存储库模式 Mongoose 入门 模型注入 Sequelize SQL (Sequelize) 入门 模型注入 OpenAPI (Swagger) 安装 引导(Bootstrap) 路由参数 数组 循环依赖 泛型和接口 类型映射 枚举 枚举 schema 原生定义 额外模型 o...
  • Overview

    Build an App with CockroachDB Build an App with CockroachDB The tutorials in this section show you how to build a simple application with CockroachDB using PostgreSQL-compatib...
  • Known Incompatibility Issues with Third-Party Tools

    Known Incompatibility Issues with Third-Party Tools General incompatibility SELECT CONNECTION_ID() returns a 64-bit integer in TiDB TiDB does not maintain Com_* counters TiDB d...
  • Querying

    Querying Querying A few simple queries are shown below: // Find all users User . findAll (). then ( users => { console . log ( "All users:" , JSON . stringify ( us...
  • 查询

    查询 查询 一些简单的查询如下所示: // 查找所有用户 User . findAll (). then ( users => { console . log ( "All users:" , JSON . stringify ( users , null , 4 )); }); // 创建新用户 Use...
  • Table Hint

    Table Hint Table Hint 当使用 mssql 时,可以使用 tableHint 来选择传递一个表提示. 该提示必须是来自 Sequelize.TableHints 的值,只能在绝对必要时使用. 每个查询当前仅支持单个表提示. 表提示通过指定某些选项来覆盖 mssql 查询优化器的默认行为. 它们只影响该子句中引用的表或视图. ...
  • 模型管理和权限管理

    1555 2019-07-10 《Lin CMS 文档手册》
    模型管理和权限管理 权限管理 架构介绍 基本使用 守卫函数 模型管理 扩展模型 InfoCrudMixin 小节 模型管理和权限管理 阅读本小节前,请确保你一定完成了快速开始 的全部内容本小结使用postman 作为 http 测试工具,请确保你有 postman 或类似的 http 测试工具,它是我们后续开发必不可少的工具。 ...
  • Synchronizing the model with the database

    Synchronizing the model with the database Synchronizing all models at once Note for production Synchronizing the model with the database If you want Sequelize to automaticall...
  • 声明 Hook

    声明 Hook 声明 Hook Hook 的参数通过引用传递. 这意味着你可以更改值,这将反映在insert / update语句中. Hook 可能包含异步动作 - 在这种情况下,Hook 函数应该返回一个 promise. 目前有三种以编程方式添加 hook 的方法: // 方法1 通过 .init() 方法 class User ...