我尝试将 json 数据放到网络上,我json.Marshal
用来创建 json 数据。
流动的画面就是fmt.Println(string(jsonOut))
结果
我template.HTMLEscape(w, []byte(jsonOut))
以前在网上显示,它会显示如下图。
"
成为"
. _
为什么它会显示"
,我该怎么做"
?
我尝试将 json 数据放到网络上,我json.Marshal
用来创建 json 数据。
流动的画面就是fmt.Println(string(jsonOut))
结果
我template.HTMLEscape(w, []byte(jsonOut))
以前在网上显示,它会显示如下图。
"
成为"
. _
为什么它会显示"
,我该怎么做"
?
如果您只想在 http 响应中显示 json
w.Write(jsonOut)
如果你想在 html 中显示 json
t, _ := template.New("foo").Parse(`<head></head><body>{{$.data}}</body>`)
_ = t.Execute(w, map[string]string{
"data": string(jsonOut),
})
template.HTMLEscape
将转义特殊字符。
使用以下代码可以将 json 数据发布到网络
w.Header().Set("Content-Type", "application/json")
w.Write(jsonOut)
参考 https://www.alexedwards.net/blog/golang-response-snippets#json