登录
首页 >  Golang >  Go问答

模板和自定义功能;恐慌:功能未定义

来源:Golang技术栈

时间:2023-04-16 18:17:40 285浏览 收藏

大家好,我们又见面了啊~本文《模板和自定义功能;恐慌:功能未定义》的内容中将会涉及到golang等等。如果你正在学习Golang相关知识,欢迎关注我,以后会给大家带来更多Golang相关文章,希望我们能一起进步!下面就开始本文的正式内容~

问题内容

使用html/template我正在尝试在模板中使用我自己的功能之一。不幸的是,我无法使用 go 模板的功能映射功能。我得到的只是以下错误:

% go run test.go
panic: template: tmpl.html:5: function "humanSize" not defined
[...]

简化后的测试用例如下(test.go):

package main

import (
    "html/template"
    "io/ioutil"
    "net/http"
    "strconv"
)

var funcMap = template.FuncMap{
    "humanSize": humanSize,
}
var tmplGet = template.Must(template.ParseFiles("tmpl.html")).Funcs(funcMap)

func humanSize(s int64) string {
    return strconv.FormatInt(s/int64(1000), 10) + " KB"
}

func getPageHandler(w http.ResponseWriter, r *http.Request) {
    files, _ := ioutil.ReadDir(".")
    if err := tmplGet.Execute(w, files); err != nil {
        http.Error(w, err.Error(), http.StatusInternalServerError)
    }
}

func main() {
    http.HandleFunc("/", getPageHandler)
    http.ListenAndServe(":8080", nil)
}

我有以下简单的模板(tmpl.html):

    {{range .}}
    
{{.Name}} {{humanSize .Size}}
{{end}}

这是 1.1.1。

正确答案

IIRC,模板函数映射必须.Funcs在解析模板之前定义。下面的代码似乎工作。

package main

import (
        "html/template"
        "io/ioutil"
        "net/http"
        "strconv"
)

var funcMap = template.FuncMap{
        "humanSize": humanSize,
}

const tmpl = `

    {{range .}}
    
{{.Name}} {{humanSize .Size}}
{{end}} ` var tmplGet = template.Must(template.New("").Funcs(funcMap).Parse(tmpl)) func humanSize(s int64) string { return strconv.FormatInt(s/int64(1000), 10) + " KB" } func getPageHandler(w http.ResponseWriter, r *http.Request) { files, err := ioutil.ReadDir(".") if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } if err := tmplGet.Execute(w, files); err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) } } func main() { http.HandleFunc("/", getPageHandler) http.ListenAndServe(":8080", nil) }

今天关于《模板和自定义功能;恐慌:功能未定义》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表