1
0
mirror of https://github.com/json-iterator/go.git synced 2025-05-13 21:36:29 +02:00

Merge pull request #429 from AllenX2018/fix-typo

fix issue #326
This commit is contained in:
Allen 2020-02-05 09:51:54 +08:00 committed by GitHub
commit 69f2a91ff4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -18,6 +18,9 @@ type namingStrategyExtension struct {
func (extension *namingStrategyExtension) UpdateStructDescriptor(structDescriptor *jsoniter.StructDescriptor) {
for _, binding := range structDescriptor.Fields {
if unicode.IsLower(rune(binding.Field.Name()[0])) {
continue
}
tag, hastag := binding.Field.Tag().Lookup("json")
if hastag {
tagParts := strings.Split(tag, ",")

View File

@ -48,3 +48,17 @@ func Test_set_naming_strategy_with_omitempty(t *testing.T) {
should.Nil(err)
should.Equal(`{"user_name":"taowen"}`, string(output))
}
func Test_set_naming_strategy_with_private_field(t *testing.T) {
should := require.New(t)
SetNamingStrategy(LowerCaseWithUnderscores)
output, err := jsoniter.Marshal(struct {
UserName string
userId int
}{
UserName: "allen",
userId: 100,
})
should.Nil(err)
should.Equal(`{"user_name":"allen"}`, string(output))
}