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 can't figure out how to receive these parameters using angular-ui router. Is there a way to do this? Or does the library need to be extended?
I can get arrays of simple types... ?thing=7&thing=8 will give me "7,8" for thing. I might be able to separate my properties this way and zip them together. Might there be a better way?
The text was updated successfully, but these errors were encountered:
I need to handle passing an array of complex types via the query string.
When I send parameters like this to the server, it will be in this form:
?thing[0].foo=firstFoo&thing[0].bar=firstBar&thing[1].foo=secondFoo&thing[1].bar=secondBar
I can't figure out how to receive these parameters using angular-ui router. Is there a way to do this? Or does the library need to be extended?
I can get arrays of simple types... ?thing=7&thing=8 will give me "7,8" for
thing
. I might be able to separate my properties this way and zip them together. Might there be a better way?The text was updated successfully, but these errors were encountered: