英文:
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:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论