咨询个结构关于JSON问题 求助!

hellsam · · 593 次点击
用rawmessage? type Test struct { Code string Message string Data json.RawMessage } 确认结构后再解析Data ?
#1
更多评论
<a href="/user/jarlyyn" title="@jarlyyn">@jarlyyn</a> 大师 应该怎么改呢,
#2
<a href="/user/hellsam" title="@hellsam">@hellsam</a> 先把你要的数据序列化为[]byte,再吧[]byte强制类型转换为rawmessage,再赋值给Data https://golang.org/pkg/encoding/json/#RawMessage
#3