This route config
URL: http://server.com/index.html#/Chapter/1/Section/2?search=moby
Route: /Chapter/:chapterId/Section/:sectionId
would result in: {chapterId:'1', sectionId:'2', search:'moby'}
Is it possible however to have a collection of objects trough $routeParams
like:
[
{chapterId:'1', sectionId:'2', search:'moby'},
{chapterId:'1', sectionId:'5', search:'mobydick'}
]
and what would be the route configuration to achieve it?