You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue with array params url:
1. ?categoryIds=1&categoryIds=2 => categoryIds=['1', '2'] : Right
2. ?categoryIds=1 => categoryIds='1' : Wrong
=> Expect: categoryIds=['1']
Could you add regex option for arrayFormat ? Or everyone have a solution for this.
Big thanks to you 🙇
The text was updated successfully, but these errors were encountered:
@sindresorhus
An Select/dropdown required array value (it was auto fill value from route params when reload). I can hand over 1 or 2 case by convert string to array, but with more select/dropdown, it's hard to control
I have an issue with array params url:
1.
?categoryIds=1&categoryIds=2
=>categoryIds=['1', '2']
: Right2.
?categoryIds=1
=>categoryIds='1'
: Wrong=> Expect:
categoryIds=['1']
Could you add regex option for arrayFormat ? Or everyone have a solution for this.
Big thanks to you 🙇
The text was updated successfully, but these errors were encountered: