Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ebook/07.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ JSON(Javascript Object Notation)是一种轻量级的数据交换语言,
var f interface{}
err := json.Unmarshal(b, &f)

这个时候f里面存储了一个map类似,他们的key是string,值存储在空的interface{}里
这个时候f里面存储了一个map类型,他们的key是string,值存储在空的interface{}里

f = map[string]interface{}{
"Name": "Wednesday",
Expand Down