2

我尝试使用带有布局模板的 martini 框架:

package main

import (
    "github.com/go-martini/martini"
    "github.com/martini-contrib/render"
)

func main() {
    m := martini.Classic()

    m.Use(render.Renderer(render.Options{Directory: "./templates",
        Layout:     "layout",
        Extensions: []string{".tmpl"},
    }))

    m.Get("/", func(r render.Render) {
        r.HTML(200, "mainPage", map[string]interface{}{"Title": "some title", "H1": "some h1"})
    })

    m.Run()
}

在与此文件相同的文件夹中,main.go 我得到了templates包含文件的layout.tmpl文件夹:

<html xmlns="http://www.w3.org/1999/xhtml"></html>
<head></head>
<body>  
    <div id='left'>
        {{template "left" .}}
    </div>
    <div id='right'>
        {{template "right" .}}
    </div>
</body>

mainPage.tmpl文件:

{{define "left"}}
  left content
{{end}}

{{define "right"}}
    right content
{{end}}

当我http://localhost:3000/在浏览器中打开时,我看到错误: html/template: "layout" is undefined

4

2 回答 2

2

我的问题是我go从随机目录运行文件。为了解决它,我将目录( )更改为文件夹cd的父级。templates

于 2014-12-14T13:50:45.953 回答
-1
<html xmlns="http://www.w3.org/1999/xhtml"></html>
   <head></head>
   <body>  
    <div id='left'>
        {{template "left" .}}
    </div>
    <div id='right'>
        {{template "right" .}}
    </div>
</body>

之后制作正确的html关闭标签</body>

就是这样:

<html xmlns="http://www.w3.org/1999/xhtml">
   <head></head>
   <body>  
    <div id='left'>
        {{template "left" .}}
    </div>
    <div id='right'>
        {{template "right" .}}
    </div>
</body>
</html>
于 2014-12-14T10:54:34.803 回答