我想创建一个GatewayInfo类型定义如下的 JSON :
type SpanInfo struct {
imsi string
network string
network_status string
signal_quality int
slot int
state string
}
type GatewayInfo []SpanInfo
网关信息是通过以下方式创建的:
var gatewayInfo = make(GatewayInfo, nb_spans)
要创建 JSON,我使用以下json.Marshal函数:
gatewayInfo := getGatewayInfo(spans)
log.Printf("Polling content: %s\n", gatewayInfo)
jsonInfo, _ := json.Marshal(gatewayInfo)
log.Printf("jsonInfo: %s\n", jsonInfo)
不幸的是,结果不是我所期望的:
2015/02/09 13:48:26 Polling content: [{652020105829193 20801 Registered (Roaming) %!s(int=17) %!s(int=2) } {652020105829194 20801 Registered (Roaming) %!s(int=16) %!s(int=3) } {652020105829192 20801 Registered (Roaming) %!s(int=19) %!s(int=1) } {652020105829197 20801 Registered (Roaming) %!s(int=19) %!s(int=4) }]
2015/02/09 13:48:26 jsonInfo: [{},{},{},{}]
正如我们所看到的,GatewayInfo实例有SpanInfo,但在 JSON 中我有空SpanInfo。
拉莫斯之舞
哔哔one
白板的微信
相关分类