问题
I am trying to implement a angular route which should have multiple parameters. Here is an example of what I tried:
.when('/myRoute/paramA/:paramA/paramB/:paramB/paramC/:paramC', {
templateUrl: 'abc.html',
controller: 'pwrController as pwrCtrl'
});
Now the problem in this is that I need to always pass paramA in order to pass paramB. And paramA and paramB in order to pass paramC.
Is there any way in angular where I can pass paramA, paramB or paramC independently ?
Thanks. !
回答1:
inject $location into your controllers and use that instead of routeParams
var paramA = 'something';
$location.search('paramA', paramA); // write
// result http://localhost:3000/#/route/routeParam?paramA=something
$location.search() // read whole object
$location.search().paramA // read one parameter
// result 'something';
来源:https://stackoverflow.com/questions/25896675/passing-multiple-parameters-in-an-angularjs-route