mirror of
https://github.com/labstack/echo.git
synced 2025-01-01 22:09:21 +02:00
bind: Maintain backwards compatibility for map[string]interface{} binding (#2656)
* bind: Maintain backwards compatibility for map[string]interface{} binding * bind to single string for map[string]interface{}{}
This commit is contained in:
parent
f7d9f5142e
commit
f13e2640f0
4
bind.go
4
bind.go
@ -159,6 +159,10 @@ func (b *DefaultBinder) bindData(destination interface{}, data map[string][]stri
|
||||
for k, v := range data {
|
||||
if isElemString {
|
||||
val.SetMapIndex(reflect.ValueOf(k), reflect.ValueOf(v[0]))
|
||||
} else if isElemInterface {
|
||||
// To maintain backward compatibility, we always bind to the first string value
|
||||
// and not the slice of strings when dealing with map[string]interface{}{}
|
||||
val.SetMapIndex(reflect.ValueOf(k), reflect.ValueOf(v[0]))
|
||||
} else {
|
||||
val.SetMapIndex(reflect.ValueOf(k), reflect.ValueOf(v))
|
||||
}
|
||||
|
@ -497,8 +497,8 @@ func TestDefaultBinder_bindDataToMap(t *testing.T) {
|
||||
assert.NoError(t, new(DefaultBinder).bindData(&dest, exampleData, "param"))
|
||||
assert.Equal(t,
|
||||
map[string]interface{}{
|
||||
"multiple": []string{"1", "2"},
|
||||
"single": []string{"3"},
|
||||
"multiple": "1",
|
||||
"single": "3",
|
||||
},
|
||||
dest,
|
||||
)
|
||||
@ -509,8 +509,8 @@ func TestDefaultBinder_bindDataToMap(t *testing.T) {
|
||||
assert.NoError(t, new(DefaultBinder).bindData(&dest, exampleData, "param"))
|
||||
assert.Equal(t,
|
||||
map[string]interface{}{
|
||||
"multiple": []string{"1", "2"},
|
||||
"single": []string{"3"},
|
||||
"multiple": "1",
|
||||
"single": "3",
|
||||
},
|
||||
dest,
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user