使用内置函数在 Go 中漂亮地打印 JSON 输出
在 Go 程序中处理 JSON 输出时,通常需要将其打印出来人类可读。虽然 jq 可以用于此目的,但 Go 标准库中也有内置函数可以实现所需的结果。
Json Marshal Indenting
The coding/json 包提供了 json.MarshalIndent() 函数来漂亮地打印 JSON 输出。它需要两个附加参数:
通过传递空字符串作为前缀和空格作为缩进,可以获得人类可读的 JSON输出:
m := map[string]interface{}{"id": "uuid1", "name": "John Smith"} data, err := json.MarshalIndent(m, "", " ") if err != nil { panic(err) } fmt.Println(string(data))
输出:
{ "id": "uuid1", "name": "John Smith" } { "id": "uuid1", "name": "John Smith" }
使用 Encoder 时还可以使用 json.Encoder.SetIndent() 方法设置缩进参数:
enc := json.NewEncoder(os.Stdout) enc.SetIndent("", " ") if err := enc.Encode(m); err != nil { panic(err) }
杰森缩进
如果您已有 JSON 字符串,可以使用 json.Indent() 函数对其进行格式化:
src := `{"id":"uuid1","name":"John Smith"}` dst := &bytes.Buffer{} if err := json.Indent(dst, []byte(src), "", " "); err != nil { panic(err) } fmt.Println(dst.String())
输出:
{ "id": "uuid1", "name": "John Smith" }
以上是如何使用内置函数在 Go 中漂亮地打印 JSON 输出?的详细内容。更多信息请关注PHP中文网其他相关文章!