我在url中有一个动态值params,我希望得到它并在onload时在控制器中使用
但我不知道如何处理$route.current.params
假设我有这个路线提供者
$routeProvider.when('foo/:bar', {templateUrl: 'template.html'};
然后在我的控制器中
app.controller('mapCtrl', function($scope, $route, $routeParams) {
var param = $route.current.params.bar;
console.log(param);
});
如果用户访问foo/abcdefg
假设应该在控制台中显示abcdefg但我收到错误。
'无法读取未定义'
答案 0 :(得分:10)
$routeProvider.when('foo/:bar', {templateUrl: 'template.html', controller: 'mapCtrl'};
app.controller('mapCtrl', function($scope, $route, $routeParams) {
var param = $routeParams.bar
console.log(param);
});
答案 1 :(得分:4)
例如:
在app_route.js中,您必须将url模式链接到特定控制器以及用于显示数据的模板:
angular.module('mapApp', []).
config(['$routeProvider', function($routeProvider){
$routeProvider.when('/foo/:bar', {templateUrl: './view/partial/template.html', controller: mapCtrl});
$routeProvider.otherwise({redirectTo: '/foo/01'});
}
]);
在您的特定控制器中添加逻辑(此处按栏选择数据): 同样用于$ routeParams& $ route.current.params
function mapCtrl($scope, $routeParams, $http) {
$http.get('./data/myDatas.json').success( function(data){
var arr = new Array();
for(var i=0; i < data.length; i++){
if(data[i].bar == $routeParams.bar){
arr.push(data[i]); }
}
$scope.items = arr;
});
}
mapCtrl.$inject = ['$scope', '$routeParams', '$http']; //for minified bug issue
在您的template.html中,布局:
<div ng-repeat="item in items">
<h3>{{item.bar}}</h3>
</div>
不要忘记在索引页面上添加要显示数据的ng-view,并在html标记中添加ng-app =“mapApp”。
我希望能帮助你^^
有关更多信息,请参阅:http://docs.angularjs.org/tutorial/step_07
答案 2 :(得分:3)
要访问$ route.current.params,您当然需要包含ngRoute模块,该模块通过包含附加的angular-route.js来加载
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.0/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.0/angular-route.js"></script>
您可以通过创建init()函数或使用routeChangeSuccess来访问current.params onLoad。
请参阅下面的代码和jsfiddle上的工作示例。
<script type="text/javascript">
var app = angular.module( "myApp", ['ngRoute'] );
app.config( function ( $routeProvider ) {
$routeProvider
.when( '/foo/:bar', {
controller: 'MainCtrl',
templateUrl: 'template.html' }
);
});
app.controller('MainCtrl', [
'$rootScope', '$scope', '$route', '$routeParams', function($rootScope, $scope, $route, $routeParams){
$scope.routeParams = {};
$scope.routeParams.bar = $routeParams.bar;
var init = function () {
$scope.initCurrentParams = {};
$scope.$route = $route;
$scope.initCurrentParams.bar = $scope.$route.current.params.bar;
console.log('from init', $scope.initCurrentParams.bar);
};
init();
$scope.$on('$routeChangeSuccess', function() {
$scope.routeChangeSuccessCurrentParams = {};
$scope.$route = $route;
$scope.routeChangeSuccessCurrentParams.bar = $scope.$route.current.params.bar;
console.log('from routeChangeSuccess', $scope.routeChangeSuccessCurrentParams.bar);
});
}]);
</script>
<div ng-app="myApp" class="ng-scope">
<script type="text/ng-template" id="template.html">
$routeParams.bar: {{ routeParams.bar }} <br />
initCurrentParams.bar: {{ initCurrentParams.bar }} <br />
routeChangeSuccessCurrentParams.bar: {{ routeChangeSuccessCurrentParams.bar }} <br />
</script>
<div class="ng-scope">
<ul>
<li><a href="#/foo/1">bar 1</a></li>
</ul>
<ng-view></ng-view>
</div>
</div>