我正在尝试转换此结构
type news struct {
Id string `json:"id"`
Title string `json:"title"`
Author string `json:"author"`
Date string `json:"date"`
Escraped string `json:"escraped"`
Page string `json:"page"`
Body string `json:"body"`
Url string `json:"url"`
}
对于以 Id 为键的地图,今天当我对这个结构进行编码时,我在函数中返回了以下 json
[
{
"id": "someId",
"title": "something",
"author": "something",
"date": "something",
"escraped": "something",
"page": "https://something",
"body": "something",
"url": "https://something"
}
]
但是现在我想更改它并使用 id 作为键,所以我想返回
[
{
"someId": {
"title": "something",
"author": "something",
"date": "something",
"escraped": "something",
"page": "https://something",
"body": "something",
"url": "https://something"
}
}
]
我不太确定如何更改它以开始使用 ID 作为键而不是常规字段,我尝试创建另一个地图但失败了。
侃侃无极
相关分类