书栈网 · BookStack 本次搜索耗时 0.012 秒,为您找到 1990 个相关结果.
  • 接口文档

    基本介绍 相关文档 基本介绍 GoFrame 框架支持全自动化的接口文档生成,保障代码与接口文档同步维护,自动生成的接口文档采用的是标准的OpenAPIv3 协议。在介绍OpenAPIv3 协议之前,建议您先阅读了解框架的规范路由特性:路由注册-规范路由 。 相关文档 接口文档-OpenAPIv3 接口文档-自定义UI
  • ORM模型生成

    模型自动生成 模型自动生成 GoFrame 框架支持非常便捷的数据表模型生成功能,通过gf gen dao/model 工具链命令实现,具体请参考 开发工具 章节。
  • ORM模型生成

    模型自动生成 模型自动生成 GoFrame 框架支持非常便捷的数据表模型生成功能,通过gf gen dao/model 工具链命令实现,具体请参考 开发工具 章节。
  • 如何从v1愉快升级到v2

    写在前面 v1与v2的兼容性 将依赖替换为v2 下载最新v2版本 工程目录的调整 编译运行修改 CLI的重要变化 一些重要说明 写在前面 GoFrame 框架发布了v2 版本,这是一个里程碑版本,包含了很多新功能特性和大量改进,并且发布了一些开创性的特性。 如果是新用户,请直接使用v2 起飞。如果是老用户,墙裂推荐从v1 升级为v2 ,...
  • 命令管理

    基本介绍 组件特性 与Cobra 比较 相关章节 基本介绍 程序需要通过命令行来管理程序启动入口,因此命令行管理组件也是框架的核心组件之一。GoFrame 框架提供了强大的命令行管理模块,由gcmd 组件实现。 使用方式 : import "github.com/gogf/gf/v2/os/gcmd" 接口文档 : https:/...
  • Project Initialization

    The Main Entry Point Bootstrap Process Configuring Routes Route Objects Creating Route Objects Defining Route Handlers Running Your Application Server Operation Testing the ...
  • Timer

    Introduction Default Timer Precautions🔥 Difference Between Timer and gcron Documentation Introduction gtimer is a concurrent safe and high-performance timer, similar to Ja...
  • Step6 - Configuration

    Import Database Driver Database Configuration CLI Tool Configuration hack/config.yaml Business Configuration manifest/config/config.yaml Add Route Registration Learning Summ...
  • Hello World

    Hello World Running the Server What’s Next The Web Server module is a core component of GoFrame , a comprehensive modular framework. We’ll start our journey with web service d...
  • Step3 - Write API Definition

    Create Delete Update GetOne GetList Learning Summary In the api directory of the project, we begin defining our CRUD APIs. We use the RESTful style for API design,...