英文: Unmarshal data in Go using stripe library 问题 刚开始使用Go进行编程。 我正在尝试使用Stripe库。有一个名为Charge的类型,我试图使用它们自...
How to determine the type of json object in go
英文: How to determine the type of json object in go 问题 在gobyexample.com/json上,有一些示例展示了如何将json字符串解码为类型...
Golang的JSON迭代不支持索引。
英文: golang json iterate not supporting indexing 问题 我在使用golang解析json时遇到了问题。 我使用了一些代码将json解析为map[strin...
json.NewDecoder.Decode()方法在解析整数时出现问题。
英文: json NewDecoder Decode not parsing integers 问题 我正在尝试创建一个API端点,用于将数据保存到数据库中,然而,通过POST请求传递的整数似乎无法正...
我想使用GIN将JSON数据传输到由Golang制作的服务器。
英文: I want to bring JSON data to server made by Golang using GIN 问题 我正在使用Golang和GIN制作Web应用程序。当Ajax类型...
GO语言解码JSON(简单数组未被捕获)
英文: GO Lang decode JSON (simple array not being picked up) 问题 结构体和JSON在Go语言中并不是很有趣。 我有一个简单的JSON示例和一个...
将数组解组为Go结构体的easyjson方法
英文: easyjson unmarshal array into go struct 问题 我最近开始使用golang和easyjson。现在我需要将一个json数组解组成一个结构体以便进行操作。 ...
Generalization in structs – golang
英文: Generalization in structs - golang 问题 我有这个函数来将一个JSON文件读入一个Driver结构体: func getDrivers() []Driver ...
将时间戳解组为time.Time类型
英文: Unmarshaling epoch timestamp into time.Time 问题 使用此结构运行Decode()会导致“timestamp”列出现错误: type Metrics ...
Go: decoding json with one set of json tags, and encoding to a different set of json tags
英文: Go: decoding json with one set of json tags, and encoding to a different set of json tags 问题 我有一...
285