36

是否可以{{range pipeline}} T1 {{end}}在包中的操作中text/template访问范围操作之前的管道值,或者作为参数传递给执行的父/全局管道?

显示我尝试做的工作示例:

package main

import (
    "os"
    "text/template"
)

// .Path won't be accessible, because dot will be changed to the Files element
const page = `{{range .Files}}<script src="{{html .Path}}/js/{{html .}}"></script>{{end}}`

type scriptFiles struct {
    Path string
    Files []string
}

func main() {
    t := template.New("page")
    t = template.Must(t.Parse(page))

    t.Execute(os.Stdout, &scriptFiles{"/var/www", []string{"go.js", "lang.js"}})
}

play.golang.org

4

1 回答 1

57

使用 $ 变量(推荐)

从包文本/模板文档中:

开始执行时,$ 设置为传递给 Execute 的数据参数,即设置为 dot 的起始值。

正如@Sandy 指出的那样,因此可以使用$.Path.

const page = `{{range .Files}}<script src="{{html $.Path}}/js/{{html .}}"></script>{{end}}`

使用自定义变量(旧答案)

发布后几分钟就找到了一个答案。
通过使用变量,可以将值传递到range作用域中:

const page = `{{$p := .Path}}{{range .Files}}<script src="{{html $p}}/js/{{html .}}"></script>{{end}}`
于 2013-06-24T20:24:25.537 回答