英文:
how to compact Json in Struct Golang
问题
包问卷
导入 (
"encoding/json"
)
类型项目[]项目
类型CreateData struct {
项目[]项目
}
类型项目 struct {
Id        string json:"id" required:"true"
CompCd    string json:"compCd" required:"true"
OrgCd     string json:"orgCd"
QstnId    string json:"qstnId" required:"true"
QstnIdSeq string json:"qstnIdSeq" required:"true"
CustId    string json:"custId"
AnsDts    string json:"ansDts" required:"true"
AnsRout   string json:"ansRout" required:"true"
QCd01     string json:"qCd01"
QKey01    string json:"qKey01"
QStc01    string json:"qStc01"
QCat01    string json:"qCat01"
Pont01    string json:"pont01"
PCat01    string json:"pCat01"
Comt01    string json:"comt01"
QCd02     string json:"qCd02"
QKey02    string json:"qKey02"
QStc02    string json:"qStc02"
QCat02    string json:"qCat02"
Pont02    string json:"pont02"
PCat02    string json:"pCat02"
Comt02    string json:"comt02"
.
.
.
QCd50     string json:"qCd50"
QKey50    string json:"qKey50"
QStc50    string json:"qStc50"
QCat50    string json:"qCat50"
Pont50    string json:"pont50"
PCat50    string json:"pCat50"
Comt50    string json:"comt50"
}
我是新手。我几天前才开始学习Go语言。
我的问题是:如何简化这个项目结构块。如果我从QCD01写到QCD50,这段代码可以运行,但很糟糕!
对不起,我不擅长英语。
英文:
package questionnaire
import (
	"encoding/json"
)
type Items []Item
type CreateData struct {
	Items []Item
}
type Item struct {
	Id        enter code herestring `json:"id"        required:"true"`
	CompCd    string `json:"compCd"    required:"true"`
	OrgCd     string `json:"orgCd"`
	QstnId    string `json:"qstnId"    required:"true"`
	QstnIdSeq string `json:"qstnIdSeq" required:"true"`
	CustId    string `json:"custId"`
	AnsDts    string `json:"ansDts"    required:"true"`
	AnsRout   string `json:"ansRout"   required:"true"`
	QCd01     string `json:"qCd01"`
	QKey01    string `json:"qKey01"`
	QStc01    string `json:"qStc01"`
	QCat01    string `json:"qCat01"`
	Pont01    string `json:"pont01"`
	PCat01    string `json:"pCat01"`
	Comt01    string `json:"comt01"`
    QCd02     string `json:"qCd02"`
	QKey02    string `json:"qKey02"`
	QStc02    string `json:"qStc02"`
	QCat02    string `json:"qCat02"`
	Pont02    string `json:"pont02"`
	PCat02    string `json:"pCat02"`
	Comt02    string `json:"comt02"`
    .
    .
    .
	QCd50     string `json:"qCd50"`
	QKey50    string `json:"qKey50"`
	QStc50    string `json:"qStc50"`
	QCat50    string `json:"qCat50"`
	Pont50    string `json:"pont50"`
	PCat50    string `json:"pCat50"`
	Comt50    string `json:"comt50"
}
I'm newbie. I just learn go language a few day before..
My problem: How to compact this Item struct block. If i write from QCd01 to QCd50 this code can run but so bad!
Sorry I'm not good at English.
答案1
得分: 0
我复制并粘贴了你评论中的代码。它缺少结束的 } 来完成 json 字符串。此外,你需要一个结构体来将 items 映射到。这是一个可工作的 playground 链接。
编辑:我没有意识到会有多个 "items",鉴于名字是复数形式,我应该假设会有多个。这是一个更新后的 playground 链接,解决了这个问题。
英文:
I copied and pasted the code in your comment. It was missing the ending } to finish the json string. Also, you need a struct to tie the items map to. Here is a working playground link.
EDIT: I didn't realize there would be more than one "items", which I should have assumed given the plural name. Here is an updated playground link that takes care of that.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。


评论