json转golang struct有没有好工具?

golang在解析json时,需要根据json schema编写sruct,这项工作繁琐而且容易出错,有没有好的工具可以减少工作量?
关注者
51
被浏览
43,360

10 个回答

goland自带此功能

GoLand: A Clever IDE to Go by JetBrains


只需要,把json复制到粘贴板

然后,创建一个新的go文件,粘贴进去,此时goland会弹出一个对话框,是否根据json生成struct

mholt.github.io/json-to

我一直用这个,很好用,还会自动把json注释也写出来