mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
Update README_CN.md
Former-commit-id: c3aa159fd658490417cd29b3d737c231ff0ea10c
This commit is contained in:
parent
8d33fd670e
commit
bae8cad58e
28
README_CN.md
28
README_CN.md
|
@ -48,31 +48,57 @@ Iris现在已经到第8版了,但是我们从未停止开发。有很多非常
|
||||||
* [最近更新](https://github.com/kataras/iris/blob/master/HISTORY.md#tu-07-november-2017--v857)
|
* [最近更新](https://github.com/kataras/iris/blob/master/HISTORY.md#tu-07-november-2017--v857)
|
||||||
* [快速入门](#getting-started)
|
* [快速入门](#getting-started)
|
||||||
* [进阶](_examples/)
|
* [进阶](_examples/)
|
||||||
* [MVC (Model View Controller)](_examples/#mvc) **NEW**
|
|
||||||
|
* [MVC (模型 视图 控制器)](_examples/#mvc) **NEW**
|
||||||
|
|
||||||
* [结构](_examples/#structuring) **NEW**
|
* [结构](_examples/#structuring) **NEW**
|
||||||
|
|
||||||
* [HTTP 监听](_examples/#http-listening)
|
* [HTTP 监听](_examples/#http-listening)
|
||||||
|
|
||||||
* [配置](_examples/#configuration)
|
* [配置](_examples/#configuration)
|
||||||
|
|
||||||
* [路由,分组,动态参数,“宏定义”已经自定义Context](_examples/#routing-grouping-dynamic-path-parameters-macros-and-custom-context)
|
* [路由,分组,动态参数,“宏定义”已经自定义Context](_examples/#routing-grouping-dynamic-path-parameters-macros-and-custom-context)
|
||||||
|
|
||||||
* [子域名处理](_examples/#subdomains)
|
* [子域名处理](_examples/#subdomains)
|
||||||
|
|
||||||
* [`http.Handler/HandlerFunc` 使用](_examples/#convert-httphandlerhandlerfunc)
|
* [`http.Handler/HandlerFunc` 使用](_examples/#convert-httphandlerhandlerfunc)
|
||||||
|
|
||||||
* [视图处理](_examples/#view)
|
* [视图处理](_examples/#view)
|
||||||
|
|
||||||
* [认证](_examples/#authentication)
|
* [认证](_examples/#authentication)
|
||||||
|
|
||||||
* [文件服务器](_examples/#file-server)
|
* [文件服务器](_examples/#file-server)
|
||||||
|
|
||||||
* [如何从`context.Request() *http.Request` 读数据](_examples/#how-to-read-from-contextrequest-httprequest)
|
* [如何从`context.Request() *http.Request` 读数据](_examples/#how-to-read-from-contextrequest-httprequest)
|
||||||
|
|
||||||
* [如何给`context.ResponseWriter() http.ResponseWriter`写数据](_examples/#how-to-write-to-contextresponsewriter-httpresponsewriter)
|
* [如何给`context.ResponseWriter() http.ResponseWriter`写数据](_examples/#how-to-write-to-contextresponsewriter-httpresponsewriter)
|
||||||
|
|
||||||
* [测试](_examples/#testing)
|
* [测试](_examples/#testing)
|
||||||
|
|
||||||
* [缓存](_examples/#caching)
|
* [缓存](_examples/#caching)
|
||||||
|
|
||||||
* [会话](_examples/#sessions)
|
* [会话](_examples/#sessions)
|
||||||
|
|
||||||
* [Websockets](_examples/#websockets)
|
* [Websockets](_examples/#websockets)
|
||||||
|
|
||||||
* [其它杂项](_examples/#miscellaneous)
|
* [其它杂项](_examples/#miscellaneous)
|
||||||
|
|
||||||
* [将"Parrot"项目转换为Iris实现](https://github.com/iris-contrib/parrot)
|
* [将"Parrot"项目转换为Iris实现](https://github.com/iris-contrib/parrot)
|
||||||
|
|
||||||
* [Iris和react/hot reloadable/redux/css-modules配合使用](https://github.com/kataras/iris-starter-kit)
|
* [Iris和react/hot reloadable/redux/css-modules配合使用](https://github.com/kataras/iris-starter-kit)
|
||||||
|
|
||||||
* [Typescript自动化操作工具](typescript/#table-of-contents)
|
* [Typescript自动化操作工具](typescript/#table-of-contents)
|
||||||
|
|
||||||
* [指南: 用Iris和Bolt实现短连接服务](https://medium.com/@kataras/a-url-shortener-service-using-go-iris-and-bolt-4182f0b00ae7)
|
* [指南: 用Iris和Bolt实现短连接服务](https://medium.com/@kataras/a-url-shortener-service-using-go-iris-and-bolt-4182f0b00ae7)
|
||||||
|
|
||||||
* [指南: 如何统计在线访问人数](_examples/tutorial/online-visitors)
|
* [指南: 如何统计在线访问人数](_examples/tutorial/online-visitors)
|
||||||
|
|
||||||
* [指南: Caddy](_examples/tutorial/caddy)
|
* [指南: Caddy](_examples/tutorial/caddy)
|
||||||
|
|
||||||
* [指南: 如何用DropzoneJS上传文件](https://hackernoon.com/how-to-build-a-file-upload-form-using-dropzonejs-and-go-8fb9f258a991)
|
* [指南: 如何用DropzoneJS上传文件](https://hackernoon.com/how-to-build-a-file-upload-form-using-dropzonejs-and-go-8fb9f258a991)
|
||||||
|
|
||||||
* [指南: Iris+MongoDB](https://medium.com/go-language/iris-go-framework-mongodb-552e349eab9c)
|
* [指南: Iris+MongoDB](https://medium.com/go-language/iris-go-framework-mongodb-552e349eab9c)
|
||||||
|
|
||||||
* [中间件](middleware/)
|
* [中间件](middleware/)
|
||||||
* [Docker例子](https://github.com/iris-contrib/cloud-native-go)
|
* [Docker例子](https://github.com/iris-contrib/cloud-native-go)
|
||||||
* [贡献](CONTRIBUTING.md)
|
* [贡献](CONTRIBUTING.md)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user