1 回答
TA贡献1836条经验 获得超4个赞
即使在常规的 golang 代码中,按名称访问结构字段也需要反射,因此在模板中也不是那么容易。没有允许它的内置函数,我也不知道有任何库提供这样的功能。您可以做的是自己实现该功能。一个非常基本的实现可能如下:
package main
import (
"fmt"
"os"
"text/template"
"reflect"
)
type Context struct {
Key string
}
func FieldByName(c Context, field string) string {
ref := reflect.ValueOf(c)
f := reflect.Indirect(ref).FieldByName(field)
return string(f.String())
}
func main() {
context := Context{Key: "value"}
text := `{{- $key := "Key" }}{{ fieldByName . $key}}`
// Custom function map
funcMap := template.FuncMap{
"fieldByName": FieldByName,
}
// Add custom functions using Funcs(funcMap)
t := template.Must(template.New("fail").Funcs(funcMap).Parse(text))
err := t.Execute(os.Stdout, context)
if err != nil {
fmt.Println("executing template:", err)
}
}
- 1 回答
- 0 关注
- 131 浏览
添加回答
举报