参数定义

最后更新于:2022-04-01 22:39:17

### 9.2. 参数定义 在作路由定义时,可以匹配一个规则,规则中可以定义路径中的某些部分作为参数之用,然后使用 _$routeParams_ 服务获取到指定参数。比如 `/#/book/test` 中, _test_ 作为参数传入到 controller 中:
访问: `/#/book/test` 不需要预定义模式,也可以像普通 GET 请求那样获取到相关参数: angular.module('ngView', [], function($routeProvider){ $routeProvider.when('/book', { template: '{{ title }}', controller: function($scope, $routeParams){ $scope.title = $routeParams.title; } } ); } ); 访问: `/#/book?title=test`
';