我知道在 Ruby 中可以使用附加参数渲染部分模板,我该如何在 Go 中做到这一点?
我有一个部分模板_partial1.tmpl
:
<div>
text1
{{if foo}}
text2
{{end}}
</div>
从父模板中使用它parent.tmpl
:
<div>
{{ template "partial1", }} // how do I pass foo param here??
</div>
如何将参数传递foo
给部分?
我知道在 Ruby 中可以使用附加参数渲染部分模板,我该如何在 Go 中做到这一点?
我有一个部分模板_partial1.tmpl
:
<div>
text1
{{if foo}}
text2
{{end}}
</div>
从父模板中使用它parent.tmpl
:
<div>
{{ template "partial1", }} // how do I pass foo param here??
</div>
如何将参数传递foo
给部分?
该文档指出,该template
指令有两种形式:
{{template "name"}}
具有指定名称的模板以 nil 数据执行。
{{template "name" pipeline}}
具有指定名称的模板将在 dot 设置为管道的值的情况下执行。
后者接受一个管道语句,然后将其dot
值设置为执行模板中的值。所以打电话
{{template "partial1" "string1"}}
将在模板中设置{{.}}
为。因此,虽然无法在部分中设置名称,但您可以传递参数,它们将出现在. 例子:"string1"
partial1
foo
.
<div>
{{ template "partial1.html" "muh"}} // how do I pass foo param here??
</div>
{{if eq . "muh"}}
blep
{{else}}
moep
{{end}}
import (
"html/template"
"fmt"
"os"
)
func main() {
t,err := template.ParseFiles("template.html", "partial1.html")
if err != nil { panic(err) }
fmt.Println(t.Execute(os.Stdout, nil))
}
blep
运行此程序将使用from 部分打印模板的内容。更改传递的值将更改此行为。
您还可以分配变量,因此可以在部分分配.
给:foo
{{ $foo := . }}