求 JSON 2个函数

hellsam · · 781 次点击
一个简单的例子: type result struct { Code string Msg string } func main() { Res := result{Code: "0", Msg: ""} bb := `{"Code:":"-1","Msg":"code error!"}` json.Unmarshal([]byte(bb), &Res) Res.Code = "200" Res.Msg = "no123" result2, _ := json.Marshal(&Res) fmt.Println(string(result2)) }
#7
更多评论
你这不是已经写了吗?
#1
<a href="/user/channel" title="@channel">@channel</a> 这个代码有问题 所以来请教各位大牛
#2