Go Revel - Modules(模块)
revel中的模块是一个可以插入到应用中的包, 它允许从第三方引入至应用,并在它和应用之间共享控制器、视图与资源等数据。
一个模块应当具有和revel应用相同的结构。“主”程序会以下列步骤合并模块:
1、`module/app/views`中的任意文件都会被加入模板加载器的搜索路径
2、`module/app/controllers`中的任意控制器都将被看作主程序的控制器
3、资源文件通过`Static.ServeModule("modulename", "public")`访问
4、路由文件将以`module:modulename`形式包含进主程序路由
##启用模块
添加至`app.conf`来启用一个模块:
module.mymodulename = go/import/path/to/module
一个空的路径表示禁用模块功能:
module.mymodulename =
启用一个`testrunner`模块:
module.testrunner = github.com/robfig/revel/modules/testrunner