首页 > 后端开发 > Golang > 如何在 Go JSON 编码中将 []byte 字段编组为字符串?

如何在 Go JSON 编码中将 []byte 字段编组为字符串?

Linda Hamilton
发布: 2024-11-07 03:29:02
原创
1042 人浏览过

How to Marshal a []byte Field as a String in Go JSON Encoding?

在 Go 中将 JSON []byte 编组为字符串

将包含 []byte 字段的结构编码为 JSON 时,可能会出现意外的字符串表示形式结果。在此编码中,[]byte 字段被编组为 base64 编码的字符串,如文档中所述:

“数组和切片值编码为 JSON 数组,但 []byte 编码为 base64-编码字符串,nil 切片编码为空 JSON 对象。”

为了说明此行为,请考虑以下 Msg 结构:

<code class="go">type Msg struct {
    Content []byte
}</code>
登录后复制

在以下示例中,字符串“Hello " 转换为 []byte 切片 helloSlc 并分配给 obj Msg 对象的 Content 字段:

<code class="go">helloStr := "Hello"
helloSlc := []byte(helloStr)
obj := Msg{helloSlc}</code>
登录后复制

使用 json.Marshal 将 obj 编码为 JSON 时,生成的 JSON 包含 base64 编码的字符串[]byte 字段的表示:

<code class="go">json, _ := json.Marshal(obj)
fmt.Println(string(json))</code>
登录后复制

输出:

{"Content":"SGVsbG8="}
登录后复制

要获取 JSON 输出中的原始字符串值“Hello”,需要将 []byte 字段表示为在编码为 JSON 之前从其 Base64 编码表示显式解码。这可以使用编码/base64包来实现:

<code class="go">import (
    "encoding/base64"
    "encoding/json"
    "fmt"
)

type Msg struct {
    Content string
}

func main() {
    helloSlc := []byte("Hello")
    obj := Msg{string(base64.StdEncoding.EncodeToString(helloSlc))}
    json, _ := json.Marshal(obj)
    fmt.Println(string(json))
}</code>
登录后复制

输出:

{"Content":"Hello"}
登录后复制

以上是如何在 Go JSON 编码中将 []byte 字段编组为字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板