diff --git "a/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\344\273\243\347\240\201\347\224\237\346\210\220-gen/\346\216\245\345\217\243\350\247\204\350\214\203-gen ctrl.md" "b/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\344\273\243\347\240\201\347\224\237\346\210\220-gen/\346\216\245\345\217\243\350\247\204\350\214\203-gen ctrl.md" index bc939f25a0b..2a5f5030a48 100644 --- "a/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\344\273\243\347\240\201\347\224\237\346\210\220-gen/\346\216\245\345\217\243\350\247\204\350\214\203-gen ctrl.md" +++ "b/docs/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\344\273\243\347\240\201\347\224\237\346\210\220-gen/\346\216\245\345\217\243\350\247\204\350\214\203-gen ctrl.md" @@ -39,7 +39,7 @@ description: '使用GoFrame生成API接口的控制器和SDK代码,从而帮 - 这里的 **版本** 通常使用 `v1`/ `v2`..这样的形式来定义,用以 `API` 兼容性的版本控制。当相同的 `API` 出现兼容性更新时,需要通过不同版本号来区分。默认使用 `v1` 来管理第一个版本。 - 这里的 **定义文件** 指的是 `API` 的输入输出定义文件,通常每个 `API` 需要单独定义一个 `go` 文件来独立维护。当然也支持将多个 `API` 放到一个 `go` 文件中统一维护。 - `api` 定义的结构体名称需要满足 `操作+Req` 及 `操作+Res` 的命名方式。例如: `GetOneReq/GetOneRes`、 `GetListReq/GetListRes`、 `DeleteReq/DeleteRes`、etc. - - 这里的操作是当前 `API` 模块的操作名称,通常对应 `CRUD` 是: `Create`、 `Update`、 `GetList/GetOne`、 `Delete`。 + - 这里的操作是当前 `API` 模块的操作名称,通常对应 `CRUD` 是: `Create`、 `Read`、 `Update`、 `Delete`。 以下是项目工程模板中的 `Hello` 接口示例: diff --git "a/docs/quick/\351\241\271\347\233\256\350\204\232\346\211\213\346\236\266/\346\216\245\345\217\243\345\274\200\345\217\221/Step1 - \350\256\276\350\256\241\346\225\260\346\215\256\350\241\250.md" "b/docs/quick/\351\241\271\347\233\256\350\204\232\346\211\213\346\236\266/\346\216\245\345\217\243\345\274\200\345\217\221/Step1 - \350\256\276\350\256\241\346\225\260\346\215\256\350\241\250.md" index 45f135a9078..aad8276a7ed 100644 --- "a/docs/quick/\351\241\271\347\233\256\350\204\232\346\211\213\346\236\266/\346\216\245\345\217\243\345\274\200\345\217\221/Step1 - \350\256\276\350\256\241\346\225\260\346\215\256\350\241\250.md" +++ "b/docs/quick/\351\241\271\347\233\256\350\204\232\346\211\213\346\236\266/\346\216\245\345\217\243\345\274\200\345\217\221/Step1 - \350\256\276\350\256\241\346\225\260\346\215\256\350\241\250.md" @@ -36,7 +36,7 @@ docker run -d --name mysql \ 启动后,连接数据库,将数据表创建`sql`语句应用进去: ```text -$ mysql -h127.0.0.1 -p3306 -uroot -p +$ mysql -h 127.0.0.1 -P 3306 -u root -p mysql: [Warning] Using a password on the command line interface can be insecure. Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. diff --git "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\344\273\243\347\240\201\347\224\237\346\210\220-gen/\346\216\245\345\217\243\350\247\204\350\214\203-gen ctrl.md" "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\344\273\243\347\240\201\347\224\237\346\210\220-gen/\346\216\245\345\217\243\350\247\204\350\214\203-gen ctrl.md" index 6d78ca033ca..14223ac447f 100644 --- "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\344\273\243\347\240\201\347\224\237\346\210\220-gen/\346\216\245\345\217\243\350\247\204\350\214\203-gen ctrl.md" +++ "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\345\274\200\345\217\221\345\267\245\345\205\267/\344\273\243\347\240\201\347\224\237\346\210\220-gen/\346\216\245\345\217\243\350\247\204\350\214\203-gen ctrl.md" @@ -39,7 +39,7 @@ One of the purposes of this command is to standardize `api` code writing, which - **Version** is usually defined as `v1`/`v2`, etc., for compatibility version control of `API`. Different versions are marked by different version numbers when compatibility updates occur. The first version is managed with `v1` by default. - **Definition file** refers to the `API` input and output definition files, where each `API` is usually maintained independently in a separate `go` file. Of course, it also supports putting multiple `APIs` in one `go` file for unified maintenance. - Structure names in `api` definition should conform to the naming convention of `Operation+Req` and `Operation+Res`, e.g., `GetOneReq/GetOneRes`, `GetListReq/GetListRes`, `DeleteReq/DeleteRes`, etc. - - The operation refers to the current `API` module's operation name, typically corresponding to `CRUD` as: `Create`, `Update`, `GetList/GetOne`, `Delete`. + - The operation refers to the current `API` module's operation name, typically corresponding to `CRUD` as: `Create`, `Read`, `Update`, `Delete`. Below is a `Hello` interface example in the project template: diff --git a/static/img/logo_full.png b/static/img/logo_full.png index 4b41f302e5a..647ff6f7fe5 100644 Binary files a/static/img/logo_full.png and b/static/img/logo_full.png differ