问题标签 [encoding-json-go]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
200 浏览

http - 在golang中将ioutil.ReadAll转换为json很热

我正在尝试将响应转换为 golang 中的 json。

我的目标是有一个端点以 json 格式显示此响应。

0 投票
1 回答
35 浏览

json - 如何在 json.Marshal 期间自定义缩进功能?

我们设计了一个“导出”API,使用户能够下载包含信息的 json 文件。json 是一个数组。现在我们遇到了一个小难题。

直接调用json.Marshal(没有缩进,不太友好)

调用json.MarshalIndent,或json.Indent(dst, src, "", " ")(缩进太多)

我想要这种

有任何想法吗?