在 Go 模板的范围操作中访问父/全局管道
在 Go 的文本/模板包中,能够在范围行动或父/全局管道至关重要。请考虑以下示例:
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"}}) }
在此示例中,在范围操作内无法访问 .Path,因为 .dot 会转换为当前的 Files 元素。
推荐解决方案 - 使用 $ 变量
根据 text/template 包文档,$ 变量保存传递给 Execute 的数据参数,这是 .dot 的初始值。因此,要在范围操作中使用 $.Path 访问外部作用域的路径,请使用以下变体:
const page = `{{range .Files}}<script src="{{html $.Path}}/js/{{html .}}"></script>{{end}}`
替代解决方案 - 自定义变量
之前范围操作,可以定义自定义变量以将值传递到范围范围。例如:
const page = `{{$p := .Path}}{{range .Files}}<script src="{{html $p}}/js/{{html .}}"></script>{{end}}`
以上是如何在Go模板的Range Action中访问父/全局管道?的详细内容。更多信息请关注PHP中文网其他相关文章!