Golang解码字符串数组

huangapple go评论80阅读模式
英文:

Golang decode array of strings

问题

我正在尝试在golang中解码一个字符串数组,并且无法在golang中解组这个JSON。

这是我的结构体:

type Keys struct {
	keys []string `json:"keys"`
}

然后尝试执行以下操作:

keys := args[0]
ks := Keys{}
err := json.Unmarshal([]byte(keys), &ks)

我在日志中得到了以下错误信息:

错误:意外的JSON输入结束
错误:解组时遇到意外的JSON输入结束
错误:意外的JSON输入结束

英文:

I am trying to decode an array of strings in golang and cannot unmarshall this json in golang

"{\"keys\":[\"CovePDF:metadata:deadlineDate:asfsdbdjh\",\"CovePDF:metadata:endedOnDate:asfsdbdjh\",\"CovePDF:metadata:moderators:asfsdbdjh\",\"CovePDF:metadata:reviewers:asfsdbdjh\",\"CovePDF:metadata:title:asfsdbdjh\",\"CovePDF:metadata:initiator:asfsdbdjh\",\"CovePDF:metadata:startOnDate:asfsdbdjh\"]}"

my struct looks like this:

type Keys struct {
     keys []string `json:"keys"`
}

and than trying to do

    keys := args[0] 
	ks := Keys{}
	err0 := json.Unmarshal([]byte(keys), &ks)

I got an error in the logs of:

> error: unexpected end of JSON input
error: Unmarshal unexpected end of JSON input
error: unexpected end of JSON input

答案1

得分: 3

JSON包只能处理导出的结构字段(例如,以大写字母开头)。这就是为什么你要使用JSON标签,这样你就可以更改标签的名称/大小写。

否则,这将按照你的预期工作。请参考以下示例:

https://play.golang.org/p/pRVKNrekWe

英文:

The JSON package can only process exported struct fields (e.g. start with a capital letter). That's why you use the JSON tag so you can change the tag name/case to use.

Otherwise, this works as you would expect. See example:

https://play.golang.org/p/pRVKNrekWe

huangapple
  • 本文由 发表于 2017年8月24日 15:33:28
  • 转载请务必保留本文链接:https://go.coder-hub.com/45855530.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定