goland修改 go struct tag 自定义格式化

使用goland写struct,定义json tag默认是用snake_case命名,也就是下划线写法

type Hello struct {
	HelloWorld string `json:"hello_world"`
}

把表达式由camelCase(fieldName())改为camelCase(fieldName())即可修改为小驼峰

type Hello struct {
	HelloWorld string `json:"helloWorld"`
}

goland修改 go struct tag 自定义格式化_第1张图片

你可能感兴趣的:(go)