Go语言转换JSON数据真是非常的简单。
以EasyUI的Demo为例,将/demo/datagrid/datagrid_data1.json 拷贝到$GOPATH/src目录:
JSON.go:
package mainimport (
"encoding/json"
"fmt"
"io/ioutil"
)type product struct {
Productid string
Productname string
Unitcost float32
Status string
Listprice float32
Attr1 string
Itemid string
}type grid struct {
Total int
Rows []product
}func main() {
var grid grid
data, err := ioutil.ReadFile("datagrid_data1.json")
if err != nil {
fmt.Println("ReadFile:", err.Error())
}
json.Unmarshal(data, &grid)
fmt.Println(grid)
fmt.Println("----------------------------")
b, _ := json.Marshal(grid)
fmt.Println(string(b))
}
将JSON绑定到结构体,结构体的字段一定要大写,否则不能绑定数据。
以上就是Go语言中转换JSON数据简单例子。爱你们已经两年了,希望我们能走得更久,都好好过日子,加油,要幸福哦。更多关于Go语言中转换JSON数据简单例子请关注haodaima.com其它相关文章!