1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 13:00:54 +00:00

Merge branch 'master' of git://github.com/astaxie/beego

This commit is contained in:
Unknown 2013-04-20 14:52:20 -04:00
commit d905e736cc
2 changed files with 5 additions and 1 deletions

View File

@ -892,6 +892,10 @@ beego中带有很多可配置的参数我们来一一认识一下它们
文件上传默认内存缓存大小,默认值是`1 << 26`(64M)
* EnableGzip
是否开启gzip支持默认为false不支持gzip一旦开启了gzip那么在模板输出的内容会进行gzip或者zlib压缩根据用户的Accept-Encoding来判断。
## 第三方应用集成
beego支持第三方应用的集成用户可以自定义`http.Handler`,用户可以通过如下方式进行注册路由:

View File

@ -94,7 +94,7 @@ func AddTemplateExt(ext string) {
func BuildTemplate(dir string) error {
if _, err := os.Stat(dir); err != nil {
if os.IsNotExist(err) {
return err
return nil
} else {
return errors.New("dir open err")
}