Is there a way to extract all parts of a URL after "/"? For example:
http://myadress.com/#/example/url/here/param1
Result: ['example', 'url', 'here'].
Currently, $routeParams
only returns an object with route parameters like {param1: 'param1'}
What is the best approach to achieve this?