Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

why tag name invalid #321

Closed
wangxingcong opened this issue Mar 23, 2023 · 0 comments
Closed

why tag name invalid #321

wangxingcong opened this issue Mar 23, 2023 · 0 comments

Comments

@wangxingcong
Copy link

struct example

type Range struct {
	StarCell []int `mapstructure:"startCell"`
	EndCell  []int `mapstructure:"endCell"`
}

type Table struct {
	Range []Range `mapstructure:"ranges"`
}

func Test_Table(t *testing.T) {
	table := Table{
		Range: []Range{
			{StarCell: []int{1, 2}, EndCell: []int{2, 3}},
			{StarCell: []int{3, 4}, EndCell: []int{4, 5}},
		},
	}
	var m map[string]interface{}
	err := mapstructure.Decode(table, &m)
	assert.NoError(t, err)
	marshal, err := json.Marshal(m)
	assert.NoError(t, err)
	t.Errorf(string(marshal))
}

i want got Range.StartCell key is lower start, but i got StartCell

{"ranges":[{"StarCell":[1,2],"EndCell":[2,3]},{"StarCell":[3,4],"EndCell":[4,5]}]}

why tag does invalid

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant