2018-03-28 06:21:17 +02:00
2018-03-28 06:22:29 +02:00
# 示例
请先学习如何使用 [net/http ](https://golang.org/pkg/net/http/ )
这里包含大部分 [iris ](https://github.com/kataras/iris ) 网络微框架的简单使用示例
这些示例不一定是最优解,但涵盖了 Iris 的大部分重要功能。
### 概览
- [Hello world! ](hello-world/main.go )
2019-06-21 18:43:25 +02:00
- [Hello WebAssemply! ](webassembly/basic/main.go )
2018-03-28 06:22:29 +02:00
- [基础 ](overview/main.go )
- [教程: 在线人数 ](tutorial/online-visitors/main.go )
2018-12-18 11:02:40 +01:00
- [教程: 一个“待完成”MVC Application基于Iris和Vue.js ](https://hackernoon.com/a-todo-mvc-application-using-iris-and-vue-js-5019ff870064 )
2018-03-28 06:22:29 +02:00
- [教程: 结合 BoltDB 生成短网址 ](https://medium.com/@kataras/a-url-shortener-service-using-go-iris-and-bolt-4182f0b00ae7 )
- [教程: 用安卓设备搭建服务器 (**MUST**) ](https://twitter.com/ThePracticalDev/status/892022594031017988 )
2018-12-18 11:02:40 +01:00
- [POC: 把中等项目"Parrot"从原生转换到Iris ](https://github.com/iris-contrib/parrot )
- [POC: 同构react/hot reloadable/redux/css-modules的起始工具包 ](https://github.com/kataras/iris-starter-kit )
2018-03-28 06:22:29 +02:00
- [教程: DropzoneJS 上传 ](tutorial/dropzonejs )
- [教程: Caddy 服务器使用 ](tutorial/caddy )
- [教程: Iris + MongoDB ](https://medium.com/go-language/iris-go-framework-mongodb-552e349eab9c )
2019-06-21 18:43:25 +02:00
- [教程: Apache Kafka的API ](tutorial/api-for-apache-kafka )
2018-03-28 06:22:29 +02:00
### 目录结构
Iris 是个底层框架, 对 MVC 模式有很好的支持,但不限制文件夹结构,你可以随意组织你的代码。
如何组织代码取决于你的需求. 我们无法告诉你如何设计程序,但你可以仔细查看下面的示例,也许有些片段可以直接放到你的程序里。
2018-03-28 21:31:49 +02:00
- [引导模式架构 ](structuring/bootstrap )
- [MVC 存储层与服务层 ](structuring/mvc-plus-repository-and-service-layers )
- [登录演示 (MVC 使用独立包组织) ](structuring/login-mvc-single-responsibility-package )
- [登录演示 (MVC 数据模型, 数据源, 存储 和 服务层) ](structuring/login-mvc )
2018-03-28 06:22:29 +02:00
2018-03-28 21:31:49 +02:00
### HTTP 监听
2018-03-28 06:22:29 +02:00
2018-03-28 21:31:49 +02:00
- [基础用法 ](http-listening/listen-addr/main.go )
* [忽略错误信息 ](http-listening/listen-addr/omit-server-errors/main.go )
2018-12-18 11:02:40 +01:00
- [UNIX socket文件 ](http-listening/listen-unix/main.go )
2018-03-28 06:22:29 +02:00
- [TLS ](http-listening/listen-tls/main.go )
2018-03-28 21:31:49 +02:00
- [Letsencrypt (自动认证) ](http-listening/listen-letsencrypt/main.go )
- [进程关闭通知 ](http-listening/notify-on-shutdown/main.go )
- 自定义 TCP 监听器
* [通用 net.Listener ](http-listening/custom-listener/main.go )
2018-12-18 11:02:40 +01:00
* [unix系统的SO_REUSEPORT ](http-listening/custom-listener/unix-reuseport/main.go )
2019-07-09 14:22:48 +02:00
- 自定义 HTTP 服务
* [HTTP/3 Quic ](http-listening/http3-quic ) **凊**
2018-12-18 11:02:40 +01:00
* [简单方式 ](http-listening/custom-httpserver/easy-way/main.go )
* [标准方式 ](http-listening/custom-httpserver/std-way/main.go )
2018-03-28 21:31:49 +02:00
* [多个服务示例 ](http-listening/custom-httpserver/multi/main.go )
- 优雅关闭
* [使用 `RegisterOnInterrupt` ](http-listening/graceful-shutdown/default-notifier/main.go )
* [自定义通知 ](http-listening/graceful-shutdown/custom-notifier/main.go )
2018-03-28 06:22:29 +02:00
2018-03-28 21:31:49 +02:00
### 配置
2018-03-28 06:22:29 +02:00
2018-03-28 21:31:49 +02:00
- [基本配置方式 ](configuration/functional/main.go )
- [Struct 方式配置 ](configuration/from-configuration-structure/main.go )
- [导入 YAML 配置文件 ](configuration/from-yaml-file/main.go )
* [多实例共享配置 ](configuration/from-yaml-file/shared-configuration/main.go )
- [导入 TOML 配置文件 ](configuration/from-toml-file/main.go )
2018-03-28 06:22:29 +02:00
2018-03-29 17:24:30 +02:00
### 路由、路由分组、路径动态参数、路由参数处理宏 、 自定义上下文
2018-03-28 06:22:29 +02:00
* `app.Get("{userid:int min(1)}", myHandler)`
* `app.Post("{asset:path}", myHandler)`
* `app.Put("{custom:string regexp([a-z]+)}", myHandler)`
2018-03-29 17:24:30 +02:00
提示: 不同于其他路由处理, iris 路由可以处理以下各种情况:
2018-03-28 06:22:29 +02:00
```go
2018-03-29 17:24:30 +02:00
// 匹配静态前缀 "/assets/" 的各种请求
2018-03-28 06:22:29 +02:00
app.Get("/assets/{asset:path}", assetsWildcardHandler)
2018-03-29 17:24:30 +02:00
// 只匹配 GET "/"
2018-03-28 06:22:29 +02:00
app.Get("/", indexHandler)
2018-03-29 17:24:30 +02:00
// 只匹配 GET "/about"
2018-03-28 06:22:29 +02:00
app.Get("/about", aboutHandler)
2018-03-29 17:24:30 +02:00
// 匹配前缀为 "/profile/" 的所有 GET 请求
// 接着是其余部分的匹配
2018-03-28 06:22:29 +02:00
app.Get("/profile/{username:string}", userHandler)
2018-03-29 17:24:30 +02:00
// 只匹配 "/profile/me" GET 请求,
// 这和 /profile/{username:string}
// 或跟通配符 {root:path} 不冲突
2018-03-28 06:22:29 +02:00
app.Get("/profile/me", userHandler)
2018-03-31 08:20:29 +02:00
// 匹配所有前缀为 /users/ 的 GET 请求
// 参数为数字,且 >= 1
2018-03-28 06:22:29 +02:00
app.Get("/user/{userid:int min(1)}", getUserHandler)
2018-03-31 08:20:29 +02:00
// 匹配所有前缀为 /users/ 的 DELETE 请求
// 参数为数字,且 >= 1
2018-03-28 06:22:29 +02:00
app.Delete("/user/{userid:int min(1)}", deleteUserHandler)
2018-03-31 08:20:29 +02:00
// 匹配所有 GET 请求,除了 "/", "/about", 或其他以 "/assets/" 开头
// 因为它不会与其他路线冲突。
2018-03-28 06:22:29 +02:00
app.Get("{root:path}", rootWildcardHandler)
```
2018-03-31 08:20:29 +02:00
可以浏览以下示例,以便更好理解
- [概览 ](routing/overview/main.go )
- [基本使用 ](routing/basic/main.go )
- [控制器 ](mvc )
- [自定义 HTTP 错误 ](routing/http-errors/main.go )
- [动态路径 ](routing/dynamic-path/main.go )
* [根级通配符路径 ](routing/dynamic-path/root-wildcard/main.go )
2019-06-21 18:43:25 +02:00
- [编写你自己的参数类型 ](routing/macros/main.go )
2018-03-31 08:20:29 +02:00
- [反向路由 ](routing/reverse/main.go )
2019-06-21 18:43:25 +02:00
- [自定义路由(高层级) ](routing/custom-high-level-router/main.go )
- [自定义包装 ](routing/custom-wrapper/main.go ) **更新**
2018-03-31 08:20:29 +02:00
- 自定义上下文
* [方法重写 ](routing/custom-context/method-overriding/main.go )
* [新实现方式 ](routing/custom-context/new-implementation/main.go )
- [路由状态 ](routing/route-state/main.go )
- [中间件定义 ](routing/writing-a-middleware )
* [路由前 ](routing/writing-a-middleware/per-route/main.go )
* [全局 ](routing/writing-a-middleware/globally/main.go )
2018-03-28 06:22:29 +02:00
2018-03-28 21:31:49 +02:00
### hero (输出的一种高效包装模式)
2018-03-28 06:22:29 +02:00
2018-03-28 21:31:49 +02:00
- [基础 ](hero/basic/main.go )
- [概览 ](hero/overview )
2019-06-21 18:43:25 +02:00
- [Sessions ](hero/sessions )
- [另一种依赖注入的例子和通常的较好实践 ](hero/smart-contract/main.go ) **新**
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
### MVC 模式
2018-03-28 06:22:29 +02:00
![](mvc/web_mvc_diagram.png)
2018-03-31 08:20:29 +02:00
Iris **对 MVC (Model View Controller) 有一流的支持** , 在 Go 社区里是独一无二的。
2018-03-28 06:22:29 +02:00
2018-03-31 08:20:29 +02:00
Iris 支持快速的请求数据,模型,持久性数据和绑定。
2018-03-28 06:22:29 +02:00
2018-03-31 08:20:29 +02:00
**特点**
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
支持所有的HTTP访问方式, 例如, 如果想要处理`GET`请求,那么控制器应该有一个叫做`Get()`的函数
你可以在同一个控制器上面定义不止一个请求处理函数(method function).
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
通过`BeforeActivation`对每个控制器自定义事件回调,使自定义控制器的结构方法(struct's methods)处理自定义路径(甚至是包含参数是正则表达式的路径),例如:
2018-03-28 06:22:29 +02:00
```go
import (
"github.com/kataras/iris"
"github.com/kataras/iris/mvc"
)
func main() {
app := iris.New()
mvc.Configure(app.Party("/root"), myMVC)
app.Run(iris.Addr(":8080"))
}
func myMVC(app *mvc.Application) {
// app.Register(...)
// app.Router.Use/UseGlobal/Done(...)
app.Handle(new(MyController))
}
type MyController struct {}
func (m *MyController) BeforeActivation(b mvc.BeforeActivation) {
// b.Dependencies().Add/Remove
2018-12-18 11:02:40 +01:00
// b.Router().Use/UseGlobal/Done // 以及任何你已经知道的标准API调用
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
// 1-> 方法
// 2-> 路径
// 3-> 被解释成handler的控制器函数名称
// 4-> 在MyCustomHandler之前需要执行的其他handler
2018-03-28 06:22:29 +02:00
b.Handle("GET", "/something/{id:long}", "MyCustomHandler", anyMiddleware...)
}
// GET: http://localhost:8080/root
func (m *MyController) Get() string { return "Hey" }
// GET: http://localhost:8080/root/something/{id:long}
func (m *MyController) MyCustomHandler(id int64) string { return "MyCustomHandler says Hey" }
```
2018-12-18 11:02:40 +01:00
通过定义依赖项服务或者有一个`单一(Singleton)`控制器范畴来持久化你控制器结构中的数据(多次请求间共享的数据)
在控制器间共享依赖或者把他们注册到上层MVC应用, 以及
在一个控制器内部可以修改每一个控制器在`BeforeActivation`可选事件回调上的依赖项的能力。
即 `func(c *MyController) BeforeActivation(b mvc.BeforeActivation) { b.Dependencies().Add/Remove(...) }` .
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
访问`Context`作为一个控制器的域(field)(不需要手动绑定)即`Ctx iris.Context`,或者通过一个方法的输入参数,即`func(ctx iris.Context, otherArguments...)`。
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
你控制器结构中的模型(在模型函数中设置并且由视图来渲染)
你可以通过一个控制器的方法来返回模型或者设置一个请求生命周期的域
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
并且在同一个生命周期中把这个域返回给另一个方法。
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
正如你之前所熟知的流程, mvc应用程序有它自己的以标准iris API `iris/router.Party` 作为类型的`路由(router)`。
`控制器` 可以被注册到任意`集合(party)`,包括子域名,这个集合会像所预料那样开始完成处理器工作。
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
可额外调用`BeginRequest(ctx)`在任何方法被执行前进行初始化,对于调用中间层(middlewares)或者使用同一组数据的多个方法而言十分有效
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
同样可调用`EndRequest(ctx)`在任何方法执行后做完成工作(finalization)
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
递归继承参考我们`mvc.SessionController`的例子,它以`Session *sessions.Session`和`Manager *sessions.Sessions`作为嵌入域,由它的`BeginRequest`来传递,看[这里](https://github.com/kataras/iris/blob/master/mvc/session_controller.go)
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
这只是一个例子,你可以使用`sessions.Session`, 它作为一个MVC应用的动态依赖从管理者的`Start`返回,即
`mvcApp.Register(sessions.New(sessions.Config{Cookie: "iris_session_id"}).Start)` .
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
通过控制器方法的输入参数来访问动态路径参数,不需要绑定。
当你需要使用Iris的默认语法从一个控制器里来解析一个handler, 你需要在这个方法前加上`By`, 大写表示一个新的子路径。例如:
如果是 `mvc.New(app.Party("/user")).Handle(new(user.Controller))`
2018-03-28 06:22:29 +02:00
- `func(*Controller) Get()` - `GET:/user` .
- `func(*Controller) Post()` - `POST:/user` .
- `func(*Controller) GetLogin()` - `GET:/user/login`
- `func(*Controller) PostLogin()` - `POST:/user/login`
- `func(*Controller) GetProfileFollowers()` - `GET:/user/profile/followers`
- `func(*Controller) PostProfileFollowers()` - `POST:/user/profile/followers`
- `func(*Controller) GetBy(id int64)` - `GET:/user/{param:long}`
- `func(*Controller) PostBy(id int64)` - `POST:/user/{param:long}`
2018-12-18 11:02:40 +01:00
如果是 `mvc.New(app.Party("/profile")).Handle(new(profile.Controller))`
2018-03-28 06:22:29 +02:00
- `func(*Controller) GetBy(username string)` - `GET:/profile/{param:string}`
2018-12-18 11:02:40 +01:00
如果是 `mvc.New(app.Party("/assets")).Handle(new(file.Controller))`
2018-03-28 06:22:29 +02:00
- `func(*Controller) GetByWildard(path string)` - `GET:/assets/{param:path}`
2018-12-18 11:02:40 +01:00
支持的函数接收者类型是: int, int64, bool and string。
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
可以通过输出参数来响应,即
2018-03-28 06:22:29 +02:00
```go
func(c *ExampleController) Get() string |
(string, string) |
(string, int) |
int |
(int, string) |
(string, error) |
error |
(int, error) |
(any, bool) |
(customStruct, error) |
customStruct |
(customStruct, int) |
(customStruct, string) |
mvc.Result or (mvc.Result, error)
```
2018-12-18 11:02:40 +01:00
其中[mvc.Result](https://github.com/kataras/iris/blob/master/mvc/func_result.go)是一个仅包含`Dispatch(ctx iris.Context)`的接口
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
## Iris MVC 模式代码复用
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
通过创建互相独立的组建,开发者可以简单快捷地在别的应用里面复用组建。 一个应用同样的(或相似的)视图使用不同的数据可以被重构给另一个应用,因为视图仅仅处理数据怎么展示给用户。
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
如果你是一个新的web后端开发者, 请先阅读MVC架构模式, 一个不错的入门是[wikipedia article](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller).
2018-03-28 06:22:29 +02:00
2018-03-31 08:20:29 +02:00
参考下面的示例
2018-03-28 06:22:29 +02:00
2019-06-21 18:43:25 +02:00
- [Hello world ](mvc/hello-world/main.go ) **更新**
- [Session Controller ](mvc/session-controller/main.go ) **更新**
- [Overview - Plus Repository and Service layers ](mvc/overview ) **更新**
- [Login showcase - Plus Repository and Service layers ](mvc/login ) **更新**
- [Singleton ](mvc/singleton ) **新**
- [Websocket Controller ](mvc/websocket ) **新**
- [Register Middleware ](mvc/middleware ) **新**
- [Vue.js Todo MVC ](tutorial/vuejs-todo-mvc ) **新**
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
### 子域名
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
- [单域名 ](subdomains/single/main.go )
- [多域名 ](subdomains/multi/main.go )
- [通配符 ](subdomains/wildcard/main.go )
2018-03-28 06:22:29 +02:00
- [WWW ](subdomains/www/main.go )
2018-03-29 18:15:58 +02:00
- [快速跳转 ](subdomains/redirect/main.go )
2018-03-28 06:22:29 +02:00
2018-03-31 08:20:29 +02:00
### 改造 `http.Handler/HandlerFunc`
2018-03-28 06:22:29 +02:00
- [From func(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) ](convert-handlers/negroni-like/main.go )
- [From http.Handler or http.HandlerFunc ](convert-handlers/nethttp/main.go )
- [From func(http.HandlerFunc) http.HandlerFunc ](convert-handlers/real-usecase-raven/writing-middleware/main.go )
2018-03-29 18:15:58 +02:00
### 视图
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
| 模板引擎 | 调用声明 |
2018-03-28 06:22:29 +02:00
| -----------|-------------|
| template/html | `iris.HTML(...)` |
| django | `iris.Django(...)` |
| handlebars | `iris.Handlebars(...)` |
| amber | `iris.Amber(...)` |
| pug(jade) | `iris.Pug(...)` |
2018-12-18 11:02:40 +01:00
- [Overview概览 ](view/overview/main.go )
2018-03-28 06:22:29 +02:00
- [Hi ](view/template_html_0/main.go )
2018-12-18 11:02:40 +01:00
- [A simple Layout简单层 ](view/template_html_1/main.go )
- [Layouts: `yield` and `render` tmpl funcs 视图层`生产`以及`渲染`模版函数 ](view/template_html_2/main.go )
- [The `urlpath` tmpl func`urlpath`模版函数 ](view/template_html_3/main.go )
- [The `url` tmpl func`url`模版函数 ](view/template_html_4/main.go )
- [Inject Data Between Handlers在处理器间注入数据 ](view/context-view-data/main.go )
- [Embedding Templates Into App Executable File在应用程序可执行文件中嵌入模版 ](view/embedding-templates-into-app/main.go )
- [Write to a custom `io.Writer`自定义`io.Writer` ](view/write-to )
- [Greeting with `Pug (Jade)`使用`Pug (Jade)` ](view/template_pug_0 )
- [`Pug (Jade) Actions` ](view/template_pug_1 )
- [`Pug (Jade) Includes` ](view/template_pug_2 )
- [`Pug (Jade) Extends` ](view/template_pug_3 )
2018-03-28 06:22:29 +02:00
You can serve [quicktemplate ](https://github.com/valyala/quicktemplate ) and [hero templates ](https://github.com/shiyanhui/hero/hero ) files too, simply by using the `context#ResponseWriter` , take a look at the [http_responsewriter/quicktemplate ](http_responsewriter/quicktemplate ) and [http_responsewriter/herotemplate ](http_responsewriter/herotemplate ) examples.
2018-12-18 11:02:40 +01:00
只要使用`context#ResponseWriter`,你可以服务[quicktemplate](https://github.com/valyala/quicktemplate)和[hero templates](https://github.com/shiyanhui/hero/hero)文件。
看这the [http_responsewriter/quicktemplate ](http_responsewriter/quicktemplate )和[http_responsewriter/herotemplate](http_responsewriter/herotemplate)的例子
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
### 认证
2018-03-28 06:22:29 +02:00
- [Basic Authentication ](authentication/basicauth/main.go )
- [OAUth2 ](authentication/oauth2/main.go )
- [JWT ](experimental-handlers/jwt/main.go )
- [Sessions ](#sessions )
2018-03-29 18:15:58 +02:00
### 文件服务器
2018-03-28 06:22:29 +02:00
- [Favicon ](file-server/favicon/main.go )
2019-06-21 18:43:25 +02:00
- [基础操作 ](file-server/basic/main.go ) **更新**
- [把文件嵌入应用的可执行文件 ](file-server/embedding-files-into-app/main.go ) **更新**
- [嵌入Gzip压缩的文件到可咨询文件 ](file-server/embedding-gziped-files-into-app/main.go ) **更新**
2018-12-18 11:02:40 +01:00
- [上传/(强制)下载文件 ](file-server/send-files/main.go )
- 单页面应用(Single Page Applications)
2019-06-21 18:43:25 +02:00
* [单页面应用 ](file-server/single-page-application/basic/main.go ) **更新**
* [嵌入式(embedded)单页面应用 ](file-server/single-page-application/embedded-single-page-application/main.go ) **更新**
* [使用额外路由的嵌入式单页面应用 ](file-server/single-page-application/embedded-single-page-application-with-other-routes/main.go ) **更新**
2018-12-18 11:02:40 +01:00
### 如何读取`context.Request() *http.Request`
- [读取JSON ](http_request/read-json/main.go )
- [读取XML ](http_request/read-xml/main.go )
2019-08-03 03:41:09 +02:00
- [读取YAML ](http_request/read-yaml/main.go ) **更新**
2018-12-18 11:02:40 +01:00
- [读取Form ](http_request/read-form/main.go )
2019-07-24 02:29:42 +02:00
- [读取Query ](http_request/read-query/main.go ) **更新**
2018-12-18 11:02:40 +01:00
- [读取每个类型的自定义结果Custom per type ](http_request/read-custom-per-type/main.go )
- [通过Unmarshaler读取Custom ](http_request/read-custom-via-unmarshaler/main.go )
- [上传/读取文件Upload/Read File ](http_request/upload-file/main.go )
- [简单上传多个文件Upload multiple files with an easy way ](http_request/upload-files/main.go )
2018-03-28 06:22:29 +02:00
> The `context.Request()` returns the same *http.Request you already know, these examples show some places where the Context uses this object. Besides that you can use it as you did before iris.
2018-12-18 11:02:40 +01:00
> `context.Request()`返回你已知的同一*http.Request, 这些例子给出了Context使用这个对象的地方。 除此以外你可以在使用iris之前那样子使用它
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
### 如何写入`context.ResponseWriter() http.ResponseWriter`
2018-03-28 06:22:29 +02:00
2019-08-03 03:41:09 +02:00
- [Content Negotiation ](http_responsewriter/content-negotiation ) **更新**
2018-12-18 11:02:40 +01:00
- [`valyala/quicktemplate`模版 ](http_responsewriter/quicktemplate )
- [`shiyanhui/hero`模版 ](http_responsewriter/herotemplate )
2018-03-28 06:22:29 +02:00
- [Text, Markdown, HTML, JSON, JSONP, XML, Binary ](http_responsewriter/write-rest/main.go )
2018-12-18 11:02:40 +01:00
- [写入Gzip压缩 ](http_responsewriter/write-gzip/main.go )
- [流输出Stream Writer ](http_responsewriter/stream-writer/main.go )
- [数据传递Transactions ](http_responsewriter/transactions/main.go )
2019-06-21 18:43:25 +02:00
- [SSE ](http_responsewriter/sse/main.go )
2018-12-18 11:02:40 +01:00
- [SSE (third-party package usage for server sent events第三方库SSE) ](http_responsewriter/sse-third-party/main.go )
2018-03-28 06:22:29 +02:00
> The `context/context#ResponseWriter()` returns an enchament version of a http.ResponseWriter, these examples show some places where the Context uses this object. Besides that you can use it as you did before iris.
2018-12-18 11:02:40 +01:00
> `context.Request()`返回了一个http.ResponseWriter的迷醉(魔幻)版本, 这些例子给出了Context使用这个对象的地方。 除此以外你可以在使用iris之前那样子使用它
2018-03-28 06:22:29 +02:00
### ORM
2018-12-18 11:02:40 +01:00
- [使用 xorm(Mysql, MyMysql, Postgres, Tidb, **SQLite**, MsSql, MsSql, Oracle) ](orm/xorm/main.go )
2018-03-28 06:22:29 +02:00
2018-03-31 08:20:29 +02:00
### 其他
2018-03-28 06:22:29 +02:00
2019-08-09 22:25:21 +02:00
- [HTTP Method Override ](https://github.com/kataras/iris/blob/master/middleware/methodoverride/methodoverride_test.go ) **更新**
2018-12-18 11:02:40 +01:00
- [请求记录器 ](http_request/request-logger/main.go )
* [将请求记录到文件 ](http_request/request-logger/request-logger-file/main.go )
- [本地化和多语言支持 ](miscellaneous/i18n/main.go )
- [恢复 ](miscellaneous/recover/main.go )
- [性能报告Profiling (pprof) ](miscellaneous/pprof/main.go )
- [内部文件记录Internal Application File Logger ](miscellaneous/file-logger/main.go )
- [Google验证码Google reCAPTCHA ](miscellaneous/recaptcha/main.go )
2018-03-28 06:22:29 +02:00
2018-03-31 08:20:29 +02:00
### 试验性质处理器
2018-03-28 06:22:29 +02:00
- [Casbin wrapper ](experimental-handlers/casbin/wrapper/main.go )
- [Casbin middleware ](experimental-handlers/casbin/middleware/main.go )
- [Cloudwatch ](experimental-handlers/cloudwatch/simple/main.go )
- [CORS ](experimental-handlers/cors/simple/main.go )
- [JWT ](experimental-handlers/jwt/main.go )
- [Newrelic ](experimental-handlers/newrelic/simple/main.go )
- [Prometheus ](experimental-handlers/prometheus/simple/main.go )
2018-12-18 11:02:40 +01:00
- [安全 ](experimental-handlers/secure/simple/main.go )
2018-03-28 06:22:29 +02:00
- [Tollboothic ](experimental-handlers/tollboothic/limit-handler/main.go )
2018-12-18 11:02:40 +01:00
- [跨站点伪造请求( CSRF) 防护 ](experimental-handlers/csrf/main.go )
2018-03-28 06:22:29 +02:00
2018-03-30 13:18:18 +02:00
#### 更多
2018-03-28 06:22:29 +02:00
https://github.com/kataras/iris/tree/master/middleware#third-party-handlers
2018-03-30 13:18:18 +02:00
### 自动 API 文档
2018-03-28 06:22:29 +02:00
- [yaag ](apidoc/yaag/main.go )
2018-03-30 13:18:18 +02:00
### 测试
2018-03-28 06:22:29 +02:00
The `httptest` package is your way for end-to-end HTTP testing, it uses the httpexpect library created by our friend, [gavv ](https://github.com/gavv ).
2018-12-18 11:02:40 +01:00
`httptest` 包是你用于端对端HTTP测试的, 它使用我们朋友[gavv](https://github.com/gavv)创建的httpexpect库
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
[例子 ](testing/httptest/main_test.go )
2018-03-28 06:22:29 +02:00
2018-03-30 13:18:18 +02:00
### 缓存
2018-03-28 06:22:29 +02:00
2018-03-30 13:18:18 +02:00
Iris 独立缓存包 [package ](https://github.com/kataras/iris/tree/master/cache ).
2018-03-28 06:22:29 +02:00
2018-03-30 13:18:18 +02:00
- [简单示例 ](cache/simple/main.go )
- [客户端 (304) ](cache/client-side/main.go ) - context 方法
2018-03-28 06:22:29 +02:00
2018-03-30 13:18:18 +02:00
> 可以随意使用自定义的缓存包。
2018-03-28 06:22:29 +02:00
2018-06-02 06:28:40 +02:00
### Cookies
2018-12-18 11:02:40 +01:00
- [基础 ](cookies/basic/main.go )
- [加密/解密 (安全cookie) ](cookies/securecookie/main.go )
2018-06-02 06:28:40 +02:00
2018-03-28 06:22:29 +02:00
### Sessions
2018-03-30 13:18:18 +02:00
Iris session 管理独立包 [package ](https://github.com/kataras/iris/tree/master/sessions ).
2018-03-28 06:22:29 +02:00
2018-12-18 11:02:40 +01:00
- [概览 ](sessions/overview/main.go )
2019-07-24 18:51:42 +02:00
- [中间件 ](sessions/middleware/main.go )
2018-12-18 11:02:40 +01:00
- [安全cookie ](sessions/securecookie/main.go )
- [临时消息 ](sessions/flash-messages/main.go )
- [数据库 ](sessions/database )
2018-03-28 06:22:29 +02:00
* [Badger ](sessions/database/badger/main.go )
* [Redis ](sessions/database/redis/main.go )
2018-03-30 13:18:18 +02:00
> 可以随意使用自定义的 Session 管理包。
2018-03-28 06:22:29 +02:00
### Websockets
2019-06-21 18:43:25 +02:00
- [Basic ](websocket/basic ) **新**
2019-05-30 09:48:07 +02:00
* [Server ](websocket/basic/server.go )
* [Go Client ](websocket/basic/go-client/client.go )
* [Browser Client ](websocket/basic/browser/index.html )
* [Browser NPM Client (browserify) ](websocket/basic/browserify/app.js )
2019-07-01 17:52:17 +02:00
- [原生消息 ](websocket/native-messages/main.go ) **更新**
- [TLS支持 ](websocket/secure/README.md )
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
### Typescript 自动化工具
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
Typescript 自动化工具独立库: [https://github.com/kataras/iris/tree/master/typescript ](https://github.com/kataras/iris/tree/master/typescript ) **包含相关示例**
2018-03-28 06:22:29 +02:00
2018-03-30 13:18:18 +02:00
### 大兄弟
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
进一步学习可通过 [godocs ](https://godoc.org/github.com/kataras/iris ) 和 https://docs.iris-go.com
2018-03-28 06:22:29 +02:00
2018-03-29 18:15:58 +02:00
不要忘记点赞 [star or watch ](https://github.com/kataras/iris/stargazers ) 这个项目会一直跟进最新趋势。