英文: Unabled to parse JSON in go lang 问题 我正在尝试使用标签在golang中解析JSON。我没有任何错误,但是我的字段是空的。 这是我的代码: type Hand...
Go是否正确将float64编组为JSON?
英文: Does Go correctly marshal float64 to JSON? 问题 使用go1.1.2 Win64,我有一个Go程序,它“marshal”一个包含float64的结构体...
Golang XML marshal两个相同的属性
英文: Golang XML marshal two identical attributes 问题 我被迫使用一些设计不良的 XML,我正在尝试将这个 XML 读入到一个 Go 结构中。这里是一些示...
在Go语言中,可以定义一个结构体来处理XML文件的所有内部元素。
英文: Define only one struct and have it process all the inner elements of a XML file in Go? 问题 假设我有以下...
如何将JSON反序列化为由其他代码提供的Go结构体?
英文: How do I unmarshal JSON into a Go struct provided by a different piece of code? 问题 我正在编写一个Go库,用于...
反射值上的解组
英文: Unmarshal on reflected value 问题 这是代码: package main import ( "fmt" "encoding/json"...
Golang XML解析和time.Time字段
英文: Golang XML Unmarshal and time.Time fields 问题 我有通过REST API检索到的XML数据,我正在将其解组为GO结构。其中一个字段是日期字段,但是AP...
无法解组具有值中包含空格的有效负载
英文: Unable to Unmarshal a payload with spaces in values 问题 我正在使用Golang读取一个XML响应。我无法正确读取带有空格的值。 这是一个代...
防止mgo/bson的Unmarshal清除未导出的字段
英文: Prevent mgo/bson Unmarshal to clear unexported fields 问题 我试图使用从MongoDb数据库中获取的内容填充一个结构体的导出字段,使用的是...
解析JSON错误,即使提供了匹配的数据结构。
英文: Unmarshal json error even a matching data structure is provided 问题 type Graph struct { id string...
27