0
Revel中可以使用模板佈局嗎?例如,有一個包含{{define "main"}}{{end}}
標籤的root.html。然後調用ExecuteTemplate(out, "main", nil)
http://golang.org/pkg/html/template/#Template.ExecuteTemplateRevel中的模板佈局
喜歡的東西c.RenderLayout()
Revel中可以使用模板佈局嗎?例如,有一個包含{{define "main"}}{{end}}
標籤的root.html。然後調用ExecuteTemplate(out, "main", nil)
http://golang.org/pkg/html/template/#Template.ExecuteTemplateRevel中的模板佈局
喜歡的東西c.RenderLayout()
你可以定義你想進入的conf/routes文件。 然後,你可以打電話給你的名字的動作你想要的:
package controllers
import (
"github.com/revel/revel"
)
func (c Name) root() revel.Result {
c.Render()
}
的意見/姓名/ root.html
其他的方式可以是這樣:
的意見/的Controler/NameAction.html
{{template "root.html" .}}
視圖/ root.html
<p>bla, bla</p>