为了账号安全,请及时绑定邮箱和手机立即绑定

html / template中ParseFiles函数的不同行为

html / template中ParseFiles函数的不同行为

Go
繁星coding 2021-05-09 16:34:21
我不明白为什么的行为与func (t *Template) Parsefiles(...有所不同func ParseFiles(...。这两个功能均来自“ html / template”包。package exampleimport (    "html/template"    "io/ioutil"    "testing")func MakeTemplate1(path string) *template.Template {    return template.Must(template.ParseFiles(path))}func MakeTemplate2(path string) *template.Template {    return template.Must(template.New("test").ParseFiles(path))}func TestExecute1(t *testing.T) {    tmpl := MakeTemplate1("template.html")    err := tmpl.Execute(ioutil.Discard, "content")    if err != nil {        t.Error(err)    }}func TestExecute2(t *testing.T) {    tmpl := MakeTemplate2("template.html")    err := tmpl.Execute(ioutil.Discard, "content")    if err != nil {        t.Error(err)    }}退出并显示错误:--- FAIL: TestExecute2 (0.00 seconds)    parse_test.go:34: html/template:test: "test" is an incomplete or empty templateFAILexit status 1请注意,此方法TestExecute1通过得很好,所以这不是问题template.html。这里发生了什么?我想念MakeTemplate2什么?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 351 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信