Merging other languages

This commit is contained in:
James Miranda
2016-09-23 18:01:10 -03:00
parent 380a8ee74c
commit de3c5bdaa4
490 changed files with 24539 additions and 24588 deletions

View File

@@ -1,7 +1,9 @@
# 13.6 小结
这一章我们主要介绍了如何实现一个基础的Go语言框架框架包含有路由设计由于Go内置的http包中路由的一些不足点我们设计了动态路由规则然后介绍了MVC模式中的Controller设计controller实现了REST的实现这个主要思路来源于tornado框架然后设计实现了模板的layout以及自动化渲染等技术主要采用了Go内置的模板引擎最后我们介绍了一些辅助的日志、配置等信息的设计通过这些设计我们实现了一个基础的框架beego目前该框架已经开源在github最后我们通过beego实现了一个博客系统通过实例代码详细的展现了如何快速的开发一个站点。
## links
* [目录](<preface.md>)
* 上一章: [实现博客的增删改](<13.5.md>)
* 下一节: [扩展Web框架](<14.0.md>)
# 13.6 Summary
In this chapter we describe how to implement a major foundation of the Go language framework, which includes routing design due to the built-in http Go package routing some shortcomings, we have designed a dynamic routing rule, and then introduces the MVC pattern Controller design, controller implements the REST implementation, the main ideas from the tornado frame, and then design and implement the template layout and automated rendering technology, mainly using the Go built-in template engine, and finally we introduce some auxiliary logs, configuration, etc. information design, through these designs we implemented a basic framework beego, present the framework has been open in GitHub, finally we beego implemented a blog system, through a detailed example code demonstrates how to quickly develop a site.
## Links
- [Directory](preface.md)
- Previous section: [Add, delete and update blogs](13.5.md)
- Next chapter: [Develop web framework](14.0.md)