Can one use Query Params that have duplicate keys? #229
Answered
by
mikequentel
mikequentel
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
mikequentel
Feb 28, 2023
Replies: 1 comment
-
Work-around solutionUse a comma-delimited string for the value, then check for this situation and set the struct members accordingly. In other words, so that the Query Param can be
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mikequentel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Work-around solution
Use a comma-delimited string for the value, then check for this situation and set the struct members accordingly. In other words, so that the Query Param can be
myparam
and the valuesvalue1,value2,value3
etc.