Возможно ли, в рамках действия {{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"}})
}