我有一个代码可以将结构编码为 json 对象。谁能告诉我如何解码回来?我不明白的是,定义解码器,它应该是什么作为输入?
包主
import "encoding/json"
import "bytes"
//import "os"
import "fmt"
func main() {
var emptyAppendEntriesResponse bytes.Buffer
enc := json.NewEncoder(&emptyAppendEntriesResponse)
d := map[string]int{"apple": 5, "lettuce": 7}
enc.Encode(d)
}
谢谢
相关分类