Assume the following route provider:
myApp.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/multivalues/:value/:value/:value',
{templateUrl: 'partials/multivalues.html',
controller: 'MultiValueController'});
}]);
Ideally, we would like the variable $routeParams.value to contain a list of 3 elements. It seems that angularJS does not support this functionality.
What is the best practice to implement this functionality?