diff --git a/README.md b/README.md index 4a9a58c..120c319 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Gee 的设计与实现参考了Gin,这个教程可以快速入门:[Go Gin简 - [第二天:上下文设计(Context)](https://geektutu.com/post/gee-day2.html),[Code - Github](day2-context) - [第三天:Tire树路由(Router)](https://geektutu.com/post/gee-day3.html),[Code - Github](day3-router) - [第四天:分组控制(Group)](https://geektutu.com/post/gee-day4.html),[Code - Github](day4-group) -- [第五天:中间件(Middleware)]((https://geektutu.com/post/gee-day5.html),[Code - Github](day5-middleware) +- [第五天:中间件(Middleware)](https://geektutu.com/post/gee-day5.html),[Code - Github](day5-middleware) - 第六天:HTML模板(Template),[Code - Github](day6-template) - 第七天:错误恢复(Panic Recover),[Code - Github](day7-panic-recover) diff --git a/doc/gee-day5.md b/doc/gee-day5.md index 9ba1147..763e8a7 100644 --- a/doc/gee-day5.md +++ b/doc/gee-day5.md @@ -1,5 +1,5 @@ --- -title: Go语言动手写Web框架 - Gee第四天 中间件Middleware +title: Go语言动手写Web框架 - Gee第五天 中间件Middleware date: 2019-09-01 20:10:10 description: 7天用 Go语言 从零实现Web框架教程(7 days implement golang web framework from scratch tutorial),用 Go语言/golang 动手写Web框架,从零实现一个Web框架,以 Gin 为原型从零设计一个Web框架。本文介绍了如何为Web框架添加中间件的功能(middlewares)。 tags: diff --git a/doc/gee.md b/doc/gee.md index 0a43c62..1fa945f 100644 --- a/doc/gee.md +++ b/doc/gee.md @@ -66,6 +66,6 @@ func handler(w http.ResponseWriter, r *http.Request) { - [第二天:上下文设计(Context)](https://geektutu.com/post/gee-day2.html),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day2-context) - [第三天:Tire树路由(Router)](https://geektutu.com/post/gee-day3.html),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day3-router) - [第四天:分组控制(Group)](https://geektutu.com/post/gee-day4.html),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day4-group) -- [第五天:中间件(Middleware)]((https://geektutu.com/post/gee-day5.html),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day5-middleware) +- [第五天:中间件(Middleware)](https://geektutu.com/post/gee-day5.html),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day5-middleware) - 第六天:HTML模板(Template),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day6-template) - 第七天:错误恢复(Panic Recover),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day7-panic-recover) \ No newline at end of file