i am trying to implement routing in angularjs. But i wish to do it in a the same way as is done in cakephp. for eg: in cakephp if i pass something like
blog/manager/users/index/page:2/sort:username/direction:asc
or
blog/manager/users/index/sort:username/direction:asc/page:2
both generate the same result. i.e. cakephp understands the named parameters passed in the url in any order (order doesn't matter). What if i need to do the same in angularjs? For now i have following coding for my routing controller in angularjs:
angular.module('productapp', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/productapp', {templateUrl: 'partials/productList.html', controller: productsCtrl}).
when('/productapp/:productId', {templateUrl: 'partials/edit.html', controller: editCtrl}).
otherwise({redirectTo: '/productapp'});
}],
['$locationProvider', function($locationProvider) {
$locationProvider.html5Mode = true;
}]);
Do i need to hardcode each and every combination of the named parameter? or is there a solution for this?