我試圖僅在我處於根路徑時才添加類。根據angularjs中的位置添加和刪除類
我有什麼想
我希望我的頭有一個類fixed
當它在根路徑和它去別處時被刪除。
我所做的
我在我的html:
<header ng-class="currentPath === '/' ? 'main-header fixed' : 'main-header' ">
和我的控制器上:
'use strict';
angular.module('hipodromoApp')
.controller('MainCtrl', function ($scope, $route, $location, $rootScope) {
$scope.awesomeThings = [
'HTML5 Boilerplate',
'AngularJS',
'Karma'
];
$scope.currentPath = $location.path();
});
我的HTML總是返回虛假的main-header
沒有fixed
類。
問題
我怎麼一個名爲fixed
類添加到我的html,只有當我在根路徑/
並刪除它時,我去別的地方?
謝謝!