Uri.splitQueryString only return the last value if parameter is entered multiple times #28142
Labels
area-core-library
SDK core library issues (core, async, ...); use area-vm or area-web for platform specific libraries.
library-core
type-enhancement
A request for a change that isn't a bug
SplitQueryString only returns the last value if the parameter is entered multiple times, for example:
"foo=bar&fi=fo&fi=fum" returns {"foo": "bar", "fi": "fum"}
I would prefer it to return a list of strings: {"foo": "bar", "fi":["fo","fum"]}
Below is example code of the type of change I would like, this is just an example, so please ammend if a more concise change would be more appropriate:
The text was updated successfully, but these errors were encountered: