Closed hojberg closed 11 years ago
Pass in the queryParams option that will be parsed into a queryString and added to the navigated uri:
queryParams
Aviator.navigate('/users', { queryParams: { filter: [1,2] }}); will navigate to "/users?filter[]=1&filter[]=2"
Aviator.navigate('/users', { queryParams: { filter: [1,2] }});
"/users?filter[]=1&filter[]=2"
@barnabyc @flahertyb
I just wrote some of this in an app branch, better it lives here though! :)
Pass in the
queryParams
option that will be parsed into a queryString and added to the navigated uri:Aviator.navigate('/users', { queryParams: { filter: [1,2] }});
will navigate to"/users?filter[]=1&filter[]=2"
@barnabyc @flahertyb