大家好,我们又见面了啊~本文《存储在地图中的 html 模板在第一次调用时崩溃》的内容中将会涉及到等等。如果你正在学习golang相关知识,欢迎关注我,以后会给大家带来更多Golang相关文章,希望
大家好,我们又见面了啊~本文《存储在地图中的 html 模板在第一次调用时崩溃》的内容中将会涉及到等等。如果你正在学习golang相关知识,欢迎关注我,以后会给大家带来更多Golang相关文章,希望我们能一起进步!下面就开始本文的正式内容~
问题内容我使用下面的函数在第一次调用模板时解析 go 模板并将其保存到地图中。
随后,将从地图加载模板进行优化。
// resource ...
type resource struct {
templates map[string]template.template
}
func (res *resource) fetchtemplate(templatename string) (template.template, bool) {
tmpl, ok := res.templates[templatename]
return tmpl, ok
}
func (res *resource) exectemplate(w Http.responsewriter, name, path string, model interface{}) error {
t, ok := res.fetchtemplate(name)
if !ok{
t := template.new(name)
t, err := t.parsefiles(res.assets + path)
t = template.must(t, err)
if err != nil {
return err
}
res.templates[name] = *t
}
if err := t.execute(w, model); err != nil {
w.writeheader(http.statusbadgateway)
return err
}
return nil
}
但是,第一次在模板上调用代码时,它会在 t.execute
调用上出现恐慌。
它总是随后有效。
这是错误日志。
/usr/local/go/src/net/http/server.go:1746 +0xd0
panic(0x15b3ac0, 0x1b1c8d0)
/usr/local/go/src/runtime/panic.go:513 +0x1b9
html/template.(*Template).escape(0xc000127088, 0x0, 0x0)
/usr/local/go/src/html/template/template.go:95 +0x32
html/template.(*Template).Execute(0xc000127088, 0x4a90200, 0xc000374680, 0x15ed6c0, 0xc000370a20, 0x0, 0x0)
/usr/local/go/src/html/template/template.go:119 +0x2f
git.imaxinacion.net/uoe/anssid/app/resource.(*Resource).ExecTemplate(0xc0002ee120, 0x4a901b0, 0xc000374680, 0x16577a3, 0x5, 0x1660b7a, 0x10, 0x15ed6c0, 0xc000370a20, 0x145de5e, ...)
/Users/gbemirojiboye/go/src/git.imaxinacion.net/uoe/anssid/app/resource/resource.go:110 +0x1ef
这可能是什么原因造成的?
当我为每个调用创建新模板时,这种情况没有发生。
问题是由于变量遮蔽,t
未定义:
t, ok := res.fetchtemplate(name)
if !ok{
t := template.new(name) // <---- the problem is here
t, err := t.parsefiles(res.assets + path)
在 if
块中,您将使用 t := ...
重新定义 t
。这意味着您有一个新的、本地范围的 t
,并且一旦您离开 if
块,您仍然拥有外部 t
,它仍然是“nils”。
将标记行更改为:
t = template.New(name)
以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持编程网!更多关于Golang的相关知识,也可关注编程网公众号。
--结束END--
本文标题: 存储在地图中的 Html 模板在第一次调用时崩溃
本文链接: https://lsjlt.com/news/596226.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-05
2024-04-05
2024-04-05
2024-04-04
2024-04-05
2024-04-05
2024-04-05
2024-04-05
2024-04-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0