Skip to content

Commit 8f43fe3

Browse files
authored
feat: support validation of array values in URL query parameters (#287)
1 parent dd6d136 commit 8f43fe3

4 files changed

+15
-3
lines changed

data_source.go

+4
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,11 @@ func (d FormData) TryGet(key string) (val any, exist, zero bool) {
841841
// Get value by key
842842
func (d FormData) Get(key string) (any, bool) {
843843
// get form value
844+
key, _, _ = strings.Cut(key, ".*")
844845
if vs, ok := d.Form[key]; ok && len(vs) > 0 {
846+
if len(vs) > 1 {
847+
return vs, true
848+
}
845849
return vs[0], true
846850
}
847851

data_source_test.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ func TestFormData(t *testing.T) {
5757
"age": {"30"},
5858
"notify": {"true"},
5959
"money": {"23.4"},
60+
6061
})
6162

6263
is.True(d.Has("notify"))
@@ -74,7 +75,8 @@ func TestFormData(t *testing.T) {
7475
is.Equal(23.4, d.Float("money"))
7576
is.Equal(float64(0), d.Float("not-exist"))
7677
is.Equal("inhere", d.String("name"))
77-
is.Equal("age=30&money=23.4&name=inhere&notify=true", d.Encode())
78+
is.Equal([]string{"[email protected]", "[email protected]"}, d.Strings("emails"))
79+
is.Equal("age=30&emails=some%40email.com&emails=other%40email.com&money=23.4&name=inhere&notify=true", d.Encode())
7880

7981
val, exist, zero := d.TryGet("name")
8082
is.True(exist)
@@ -85,6 +87,11 @@ func TestFormData(t *testing.T) {
8587
is.True(exist)
8688
is.Equal("inhere", val)
8789

90+
emails, exist := d.Get("emails")
91+
is.True(exist)
92+
is.Len(emails, 2)
93+
is.Equal([]string{"[email protected]", "[email protected]"}, emails)
94+
8895
nval, err := d.Set("newKey", "strVal")
8996
is.NoErr(err)
9097
is.Equal("strVal", nval)

validators.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1198,8 +1198,8 @@ func StringLength(val any, minLen int, maxLen ...int) bool {
11981198
*************************************************************/
11991199

12001200
// IsDate check value is an date string.
1201-
func IsDate(srcDate string) bool {
1202-
_, err := strutil.ToTime(srcDate)
1201+
func IsDate(srcDate string, layouts ...string) bool {
1202+
_, err := strutil.ToTime(srcDate, layouts...)
12031203
return err == nil
12041204
}
12051205

validators_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -725,6 +725,7 @@ func TestDateCheck(t *testing.T) {
725725
is := assert.New(t)
726726
// Date
727727
is.True(IsDate("2018-10-25"))
728+
is.True(IsDate("2018-10", "2006-01"))
728729

729730
// DateFormat
730731
is.True(DateFormat("2018-10-25", "2006-01-02"))

0 commit comments

Comments
 (0)