gpt4 book ai didi

json - 将字节数组设置为 json.RawMessage

转载 作者:IT王子 更新时间:2023-10-29 02:04:47 29 4
gpt4 key购买 nike

我在 golang 中有字节数组:

obj_data, _ := json.Marshal(obj)

并且想要将这个字节数组设置为 json.RawMessage我认为它会起作用:

data := json.RawMessage{obj_data}

但我有错误:

cannot use obj_data (type []byte) as type byte in array element

请帮帮我! =)

最佳答案

你需要一个 type conversion ,不是文字:

data := json.RawMessage(obj_data)

关于json - 将字节数组设置为 json.RawMessage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34882694/

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