在我的主模板中
<body data-ng-controller="MainCtrl">
<div id="container" data-ng-class="{home: home}">
在我的控制器中
.controller('MainCtrl',function($scope,$location) {
$scope.$on('$routeChangeSuccess', function (scope, next, current) {
if($location.path()==='/'){
$scope.home = true;
}
else{
$scope.home = false;
}
}
我的目标是仅在路由器运行 IndexCtrl 时设置一个类
.config(function (CONFIG,$routeProvider) {
$routeProvider
.when('/', {
templateUrl: CONFIG.site.path_views + '/index/index.html',
controller: 'IndexCtrl'
})
}
我想知道是否有更好的方法。