gpt4 book ai didi

go - 占位符不被替换

转载 作者:行者123 更新时间:2023-12-03 10:09:45 29 4
gpt4 key购买 nike

我正在试用包http/template .
我也已经做到了,例如页眉、页脚、导航栏等都包含在基本模板中:

{{ define "base" }}
<!DOCTYPE html>
<html lang="en">

<!-- Start Head -->
<head>
{{ template "head" }}
</head>
<!-- End Head -->

<!-- Start Body -->
<body>
{{ template "navbar" }}
{{ template "content" }}
{{ template "footer" }}
</body>
<!-- End Body -->
</html>
{{ end }}
404页面:
{{ define "content" }}
[...]
<h1 class="text-light text-right">404</h1>
<small>{{.CurrentURL}}</small>
[...]
{{ end }}
所以这里的变量 CurrentURL应替换为当前 URL。
但是,这仅在网站上显示为空( "" ):
<small></small>
但是现在我想替换一个变量,该变量在网页上仅显示为“”。
去代码:
解析器:
func (parser *TemplateParser) ParseTemplate(name string) (tpl *template.Template, err error) {
root, err := template.New("root").Parse(rootTmpl)
// ...
return root.ParseFiles(files...)
}
路线:
func (ws *WebServer) Exec(name string, r *http.Request, w http.ResponseWriter, data map[string]interface{}) (err error) {
// ...
// add default data
data["CurrentURL"] = r.URL.RequestURI()

// ...
return tpl.Execute(w, data)
}
即使使用数组,我也无法使用 range ETC:
    type Test struct {
CurrentURL string
C []string
}

t := Test{
CurrentURL: "Current URL",
C: []string {"C1", "c2", "ccc4"},
}

tpl.Execute(w, t)
 <ul>
{{range .C}}
<li>{{.}}</li>
{{end}}
</ul>
<!-- No <li></li> is created -->
我究竟做错了什么?

最佳答案

您必须将上下文传递给实例化的模板。采用

{{ template "content" .}}
. 中传递数据到 content模板。

关于go - 占位符不被替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65582487/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com