gpt4 book ai didi

json - Golang直接在模板中使用json

转载 作者:IT王子 更新时间:2023-10-29 00:36:48 26 4
gpt4 key购买 nike

我正在寻找一种将 json 数据直接绑定(bind)到模板中的方法(在 golang 中没有任何结构表示)——但我很快就找不到了。本质上,我想要的是让模板文档和 json 都只是任意数据——而我的 handleFunc 本质上是:

func handler(writer http.ResponseWriter, request *http.Request) {
t, _ := template.ParseFiles( "someTemplate.html" )
rawJson, _ := ioutil.ReadFile( "someData.json" )

// here's where I need help
somethingTemplateUnderstands := ????( rawJson )

t.Execute( writer, somethingTemplateUnderstands )
}

我试过 json.Unmarshal,但它似乎需要一个类型。最主要的是,在实际程序中,json 和模板都来自数据库,并且在运行时完全可变,(并且有很多不同的)所以我不能在 go 程序本身中编码任何结构。显然,我希望能够制作如下数据:

{ "something" : { "a" : "whatever" }}

然后像这样的模板

<html><body>
the value is {{ .something.a }}
</body></html>

使用 go http.template 库是否可行,或者我需要转到 Node(或寻找另一个模板库?)

最佳答案

您可以使用 json.Unmarshal()将 JSON 文本解码为 Go 值。

您可以简单地使用 Go 类型 interface{} 来表示任意 JSON 值。通常,如果它是一个结构,则使用 map[string]interface{} 并且如果您也需要在 Go 代码中引用存储在其中的值(但这不能表示数组例如)。

template.Execute()template.ExecuteTemplate()将模板的数据/参数作为 interface{} 类型的值,您可以将 Go 中的任何内容传递给该类型。 template 引擎使用反射(reflect 包)来“发现”它的运行时类型并根据您在模板操作中提供的选择器在其中导航(它可以指定结构的字段或键 map ,甚至方法名称)。

除此之外,一切都按预期进行。看这个例子:

func main() {
t := template.Must(template.New("").Parse(templ))

m := map[string]interface{}{}
if err := json.Unmarshal([]byte(jsondata), &m); err != nil {
panic(err)
}

if err := t.Execute(os.Stdout, m); err != nil {
panic(err)
}
}

const templ = `<html><body>
Value of a: {{.something.a}}
Something else: {{.somethingElse}}
</body></html>`

const jsondata = `{"something":{"a":"valueofa"}, "somethingElse": [1234, 5678]}`

输出(在 Go Playground 上尝试):

<html><body>
Value of a: valueofa
Something else: [1234 5678]
</body></html>

关于json - Golang直接在模板中使用json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38436854/

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