我仍在学习 Go(来自 Python)并且我正在尝试在 AWS 中自动执行任务。我在工作中有这个要求,我需要将 JSON 输出写入一个文件,但我正在努力如何打印我的结构中的所有字段。我错过了这个Basket领域。
我希望它像这样打印:
{
"Basket": [
{
"Name": "Apple",
"Color": "Red"
},
{
"Name": "Banana",
"Color": "Yellow"
}
]
}
但我只得到这个:
[
{
"Name": "Apple",
"Color": "Red"
},
{
"Name": "Banana",
"Color": "Yellow"
}
]
您可以在Go Playground中找到我的代码。
明月笑刀无情
杨魅力
相关分类