码迷,mamicode.com
首页 > 其他好文 > 详细

golang的序列与反序列化

时间:2016-09-07 14:43:47      阅读:390      评论:0      收藏:0      [点我收藏+]

标签:

golang写backend之类的应用,还是挺方便的...
使用encoding/json包时, 必须注意, 在struct定义的属性必须是exported, 否则不会设置值. 例如:
type DRole struct { Id string `json:"id"`}
type DataRole struct { Roles []DRole `json:"roles"`}
type Role struct { TenantName string `json:"tenant_name"` TenantId string `json:"tenant_id"` Roles []string `json:"roles"`}
type Response struct { Ok bool `json:"ok"` Msg string `json:"msg"` UserName string `json:"user_name"` UserId string`json:"user_id"` Roles []Role `json:"roles"`}

golang的序列与反序列化

标签:

原文地址:http://www.cnblogs.com/zolo/p/5849091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!