有条件地包括Angular App中的侧边栏和标题

时间:2015-04-20 05:15:12

标签: angularjs angularjs-ng-include angular-ng-if

在某些视图中,我想要一个侧边栏和标题,有些我不想。使用AngularJS,实现这一目标的最佳方法是什么。

我当前的解决方案是在侧边栏和标题DIV上使用ng-if,并在我的控制器中,将$ scope变量设置为true或false,具体取决于我希望侧边栏和标题出现的视图

一个具体的例子是Youtube.com。在Youtube的主页上,请注意有一个侧边栏和一个带有过滤器的子标题:“要注意什么”和“音乐”。但是,在任何视频页面上,侧边栏和子标题都不存在。我想在AngularJS中实现这一点。

的index.html

    <html ng-app="demoApp">

    <body ng-controller="demoAppMainController">

        <header>
            <ng-include src="'./partials/mainHeader.html'"></ng-include>
            <ng-include ng-if="showSubHeader" src="'./partials/mainSubHeader.html'"></ng-include>
        </header>

        <main>
            <ng-view></ng-view>
        </main>


    </body>
    </html>

discussionBoard.html

    <div class="discussionBoard" ng-controller="DiscussionBoardController">
         <h2>DiscussionBoard</h2>
    </div>

controllers.js

    var demoAppControllers = angular.module('demoAppControllers', []);

    demoAppControllers.controller('demoAppMainController', ['$scope', function($scope) {
            $scope.showSubHeader = true;
    }]);

    opinionLensControllers.controller('DiscussionBoardController', ['$scope', function($scope) {
            $scope.showSubHeader = false;
    }]);

2 个答案:

答案 0 :(得分:7)

我会在controller级别配置,而不是route级别。并将收听$routeChangeSuccess事件并更新$rootScope

demoAppControllers.config(function ($routeProvider) {
    $routeProvider.
    when('/home', {
        templateUrl: 'home.html',
        controller: 'HomeController',
        showHeader : true
    }).
    when('/about', {
        templateUrl: 'discuss.html',
        controller: 'DiscussionBoardController',
        showHeader : false
    }).
    otherwise({
        redirectTo: '/home'
    });
}).
run(['$rootScope', function($rootScope) {
    $rootScope.$on("$routeChangeSuccess", function(event, next, current) {
        $rootScope.showHeader = next.$$route.showHeader;
    });
}]);

在模板中,您只需使用ng-if="showHeader"即可。我觉得它很容易维护。

答案 1 :(得分:1)

ng-if =“showHeader == true”像这样使用

 <ng-include ng-if="showHeader == true" src="'./partials/mainSubHeader.html'"></ng-include>