如果我在引导程序中有导航栏
Home | About | Contact
当每个菜单项处于活动状态时,如何设置它们的活动类?也就是说,class="active"
当角度路线位于
#/
回家#/about
关于页面#/contact
用于联系页面
如果我在引导程序中有导航栏
Home | About | Contact
当每个菜单项处于活动状态时,如何设置它们的活动类?也就是说,class="active"
当角度路线位于
#/
回家#/about
关于页面#/contact
用于联系页面Answers:
一种非常优雅的方法是使用ng-controller在ng-view外部运行单个控制器:
<div class="collapse navbar-collapse" ng-controller="HeaderController">
<ul class="nav navbar-nav">
<li ng-class="{ active: isActive('/')}"><a href="/">Home</a></li>
<li ng-class="{ active: isActive('/dogs')}"><a href="/dogs">Dogs</a></li>
<li ng-class="{ active: isActive('/cats')}"><a href="/cats">Cats</a></li>
</ul>
</div>
<div ng-view></div>
并包含在controllers.js中:
function HeaderController($scope, $location)
{
$scope.isActive = function (viewLocation) {
return viewLocation === $location.path();
};
}
return $location.path().indexOf(viewLocation) == 0;
改用,这样您也可以捕获带有参数的页面
elegant
-路线名称(例如/dogs
,必须在致电中重复)isActive('/dogs')
ui-sref-active/ui-sref-active-eq
指令,即。ui-sref-active-eq='active'
或ui-sref-active='active'
达到相同的结果
我刚刚编写了一个指令来处理此问题,因此您可以简单地将属性添加bs-active-link
到父<ul>
元素,并且每当路线更改时,它将找到匹配的链接,并将active
该类添加到相应的<li>
。
您可以在此处查看它的运行情况:http : //jsfiddle.net/8mcedv3b/
HTML示例:
<ul class="nav navbar-nav" bs-active-link>
<li><a href="/home">Home</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
Javascript:
angular.module('appName')
.directive('bsActiveLink', ['$location', function ($location) {
return {
restrict: 'A', //use as attribute
replace: false,
link: function (scope, elem) {
//after the route has changed
scope.$on("$routeChangeSuccess", function () {
var hrefs = ['/#' + $location.path(),
'#' + $location.path(), //html5: false
$location.path()]; //html5: true
angular.forEach(elem.find('a'), function (a) {
a = angular.element(a);
if (-1 !== hrefs.indexOf(a.attr('href'))) {
a.parent().addClass('active');
} else {
a.parent().removeClass('active');
};
});
});
}
}
}]);
您可以看一下AngularStrap,navbar指令似乎正是您想要的:
https://github.com/mgcrea/angular-strap/blob/master/src/navbar/navbar.js
.directive('bsNavbar', function($location) {
'use strict';
return {
restrict: 'A',
link: function postLink(scope, element, attrs, controller) {
// Watch for the $location
scope.$watch(function() {
return $location.path();
}, function(newValue, oldValue) {
$('li[data-match-route]', element).each(function(k, li) {
var $li = angular.element(li),
// data('match-rout') does not work with dynamic attributes
pattern = $li.attr('data-match-route'),
regexp = new RegExp('^' + pattern + '$', ['i']);
if(regexp.test(newValue)) {
$li.addClass('active');
} else {
$li.removeClass('active');
}
});
});
}
};
});
要使用此指令:
从http://mgcrea.github.io/angular-strap/下载AngularStrap
在bootstrap.js之后将脚本添加到页面上:
<script src="lib/angular-strap.js"></script>
将指令添加到您的模块中:
angular.module('myApp', ['$strap.directives'])
将指令添加到导航栏:
<div class="navbar" bs-navbar>
在每个导航项上添加正则表达式:
<li data-match-route="/about"><a href="#/about">About</a></li>
scope.$watch
)
element
变量传递给jquery选择器?$('...', element)
这是一种适用于Angular的简单方法。
<ul class="nav navbar-nav">
<li ng-class="{ active: isActive('/View1') }"><a href="#/View1">View 1</a></li>
<li ng-class="{ active: isActive('/View2') }"><a href="#/View2">View 2</a></li>
<li ng-class="{ active: isActive('/View3') }"><a href="#/View3">View 3</a></li>
</ul>
在您的AngularJS控制器中:
$scope.isActive = function (viewLocation) {
var active = (viewLocation === $location.path());
return active;
};
如果您使用的是Angular路由器,则可以非常优雅地使用RouterLinkActive指令:
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" routerLink="home" routerLinkActive="active">Home</a></li>
<li class="nav-item"><a class="nav-link" routerLink="gallery" routerLinkActive="active">Gallery</a></li>
<li class="nav-item"><a class="nav-link" routerLink="pricing" routerLinkActive="active">Prices</a></li>
<li class="nav-item"><a class="nav-link" routerLink="contact" routerLinkActive="active">Contact</a></li>
</ul>
active
该类应该位于<li>
(您可以将routerLinkActive放在routerLink或其父级中)
/
用作首页,routerLinkActive
则将对以开头的任何URL都处于活动状态/
,例如/foo/
,/foo/bar
等等。要完全匹配,您需要routerLinkActive="active" [routerLinkActiveOptions]="{exact:true}"
。
首先,这个问题可以用很多方法解决。这种方法可能不是最优雅的,但可以肯定地起作用。
这是一个简单的解决方案,您应该可以将其添加到任何项目中。您可以在配置可用于注销的路由时仅添加“ pageKey”或其他属性。另外,您可以在$ route对象的$ routeChangeSuccess方法上实现一个侦听器,以侦听路由更改的成功完成。
当处理程序触发时,您将获得页面密钥,并使用该密钥来查找该页面需要为“ ACTIVE”的元素,然后应用ACTIVE类。
请记住,您需要一种使所有元素“处于活动状态”的方法。如您所见,我在导航项上使用.pageKey类将其全部关闭,而在使用.pageKey_ {PAGEKEY}分别将其打开。将它们全部切换为非活动状态将被认为是一种幼稚的方法,通过使用先前的路由仅使活动项目处于非活动状态,可能会获得更好的性能,或者可以将jquery选择器更改为仅选择活动项目为非活动状态。使用jquery选择所有活动项可能是最好的解决方案,因为它可以确保在当前路由中清除所有内容,以防在以前的路由中出现任何CSS错误。
这将意味着更改以下代码行:
$(".pagekey").toggleClass("active", false);
到这个
$(".active").toggleClass("active", false);
这是一些示例代码:
给定一个引导导航栏
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<a class="brand" href="#">Title</a>
<ul class="nav">
<li><a href="#!/" class="pagekey pagekey_HOME">Home</a></li>
<li><a href="#!/page1/create" class="pagekey pagekey_CREATE">Page 1 Create</a></li>
<li><a href="#!/page1/edit/1" class="pagekey pagekey_EDIT">Page 1 Edit</a></li>
<li><a href="#!/page1/published/1" class="pagekey pagekey_PUBLISH">Page 1 Published</a></li>
</ul>
</div>
</div>
还有一个角度模块和控制器,如下所示:
<script type="text/javascript">
function Ctrl($scope, $http, $routeParams, $location, $route) {
}
angular.module('BookingFormBuilder', []).
config(function ($routeProvider, $locationProvider) {
$routeProvider.
when('/', {
template: 'I\'m on the home page',
controller: Ctrl,
pageKey: 'HOME' }).
when('/page1/create', {
template: 'I\'m on page 1 create',
controller: Ctrl,
pageKey: 'CREATE' }).
when('/page1/edit/:id', {
template: 'I\'m on page 1 edit {id}',
controller: Ctrl, pageKey: 'EDIT' }).
when('/page1/published/:id', {
template: 'I\'m on page 1 publish {id}',
controller: Ctrl, pageKey: 'PUBLISH' }).
otherwise({ redirectTo: '/' });
$locationProvider.hashPrefix("!");
}).run(function ($rootScope, $http, $route) {
$rootScope.$on("$routeChangeSuccess",
function (angularEvent,
currentRoute,
previousRoute) {
var pageKey = currentRoute.pageKey;
$(".pagekey").toggleClass("active", false);
$(".pagekey_" + pageKey).toggleClass("active", true);
});
});
</script>
您实际上可以使用angular-ui-utils ' ui-route
指令:
<a ui-route ng-href="/">Home</a>
<a ui-route ng-href="/about">About</a>
<a ui-route ng-href="/contact">Contact</a>
要么:
/**
* Header controller
*/
angular.module('myApp')
.controller('HeaderCtrl', function ($scope) {
$scope.menuItems = [
{
name: 'Home',
url: '/',
title: 'Go to homepage.'
},
{
name: 'About',
url: '/about',
title: 'Learn about the project.'
},
{
name: 'Contact',
url: '/contact',
title: 'Contact us.'
}
];
});
<!-- index.html: -->
<div class="header" ng-controller="HeaderCtrl">
<ul class="nav navbar-nav navbar-right">
<li ui-route="{{menuItem.url}}" ng-class="{active: $uiRoute}"
ng-repeat="menuItem in menuItems">
<a ng-href="#{{menuItem.url}}" title="{{menuItem.title}}">
{{menuItem.name}}
</a>
</li>
</ul>
</div>
如果您使用的是ui-utils,您可能还对ui-router来管理部分/嵌套视图感兴趣。
对不起,我发现所有这些答案对我来说都有些复杂。因此,我创建了一个小指令,该指令应在每个导航栏上运行:
app.directive('activeLink', function () {
return {
link: function (scope, element, attrs) {
element.find('.nav a').on('click', function () {
angular.element(this)
.parent().siblings('.active')
.removeClass('active');
angular.element(this)
.parent()
.addClass('active');
});
}
};
});
用法:
<ul class="nav navbar-nav navbar-right" active-link>
<li class="nav active"><a href="home">Home</a></li>
<li class="nav"><a href="foo">Foo</a></li>
<li class="nav"><a href="bar">Bar</a></li>
</ul>
我使用ng-class指令和$ location来实现它。
<ul class="nav">
<li data-ng-class="{active: ($location.path() == '/') }">
<a href="#/">Carpeta Amarilla</a>
</li>
<li class="dropdown" data-ng-class="{active: ($location.path() == '/auditoria' || $location.path() == '/auditoria/todos') }">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Auditoria
<b class="caret"></b>
</a>
<ul class="dropdown-menu pull-right">
<li data-ng-class="{active: ($location.path() == '/auditoria') }">
<a href="#/auditoria">Por Legajo</a>
</li>
<li data-ng-class="{active: ($location.path() == '/auditoria/todos') }">
<a href="#/auditoria/todos">General</a>
</li>
</ul>
</li>
</ul>
它要求导航栏位于主控制器内部,可以访问$ location服务,如下所示:
bajasApp.controller('MenuCntl', ['$scope','$route', '$routeParams', '$location',
function MenuCntl($scope, $route, $routeParams, $location) {
$scope.$route = $route;
$scope.$location = $location;
$scope.$routeParams = $routeParams;
}]);
如果使用ui-router,则以下示例应基于@DanPantry对已接受答案的注释来满足您的需求,而无需添加任何控制器端代码:
<div class="collapse navbar-collapse" ng-controller="HeaderController">
<ul class="nav navbar-nav">
<li ui-sref-active="active"><a ui-sref="app.home()" href="/">Home</a></li>
<li ui-sref-active="active"><a ui-sref="app.dogs()" href="/dogs">Dogs</a></li>
<li ui-sref-active="active"><a ui-sref="app.cats()" href="/cats">Cats</a></li>
</ul>
</div>
<div ng-view></div>
您可以检查文档以获取更多信息。
ui.router
!
如果您不想使用AngularStrap,则此指令可以解决问题!这是对https://stackoverflow.com/a/16231859/910764的修改。
的JavaScript
angular.module('myApp').directive('bsNavbar', ['$location', function ($location) {
return {
restrict: 'A',
link: function postLink(scope, element) {
scope.$watch(function () {
return $location.path();
}, function (path) {
angular.forEach(element.children(), (function (li) {
var $li = angular.element(li),
regex = new RegExp('^' + $li.attr('data-match-route') + '$', 'i'),
isActive = regex.test(path);
$li.toggleClass('active', isActive);
}));
});
}
};
}]);
的HTML
<ul class="nav navbar-nav" bs-navbar>
<li data-match-route="/home"><a href="#/home">Home</a></li>
<li data-match-route="/about"><a href="#/about">About</a></li>
</ul>
注意:以上HTML类假定您使用的是Bootstrap 3.x
这是我的看法。在这篇文章中找到了一些答案的组合。我的情况略有不同,因此我的解决方案包括将菜单分成自己的模板,以在Directive Definition Ojbect中使用,然后将导航栏添加到需要的页面上。基本上,我有一个不想包含菜单的登录页面,因此我使用ngInclude并在登录时插入了此指令:
module.directive('compModal', function(){
return {
restrict: 'E',
replace: true,
transclude: true,
scope: true,
templateUrl: 'templates/menu.html',
controller: function($scope, $element, $location){
$scope.isActive = function(viewLocation){
var active = false;
if(viewLocation === $location.path()){
active = true;
}
return active;
}
}
}
});
<ul class="nav navbar-nav">
<li ng-class="{ active: isActive('/View1') }"><a href="#/View1">View 1</a></li>
<li ng-class="{ active: isActive('/View2') }"><a href="#/View2">View 2</a></li>
<li ng-class="{ active: isActive('/View3') }"><a href="#/View3">View 3</a></li>
</ul>
<comp-navbar/>
希望这可以帮助
扩展myl答案,我需要使用它来处理这样的结构。
-指数
-events <
-活动---事件列表
---事件编辑
---事件地图<-单击
-places
--- place-list
--- place-edit
--- place-map
因此,为了验证格式是否符合条件的子链接,我不得不使用indexOf而不是匹配。因此,对于“事件”:
<li ng-class="{ active: isActive('/event')}" class="divider-vertical dropdown">
function NavController($scope, $location) {
$scope.isActive = function (viewLocation) {
var s=false;
if($location.path().indexOf(viewLocation) != -1){
s = true;
}
return s;
};}
这是一个简单的解决方案
<ul class="nav navbar-nav navbar-right navbar-default menu">
<li ng-class="menuIndice == 1 ? 'active':''">
<a ng-click="menuIndice = 1" href="#/item1">item1</a>
</li>
<li ng-class="menuIndice == 2 ? 'active':''">
<a ng-click="menuIndice = 2" href="#/item2">item2</a>
</li>
<li ng-class="menuIndice == 3 ? 'active':''">
<a ng-click="menuIndice = 3" href="#/item3">item3</a>
</li>
</ul>
结合@Olivier的AngularStrap答案,我还从以下网址实现了kevinknelson的答案:https : //github.com/twbs/bootstrap/issues/9013。
本地而言,Bootstrap3导航栏不是为单页(例如Angular)应用程序设计的,因此,在小屏幕上单击时,菜单不会折叠。
的JavaScript
/**
* Main AngularJS Web Application
*/
var app = angular.module('yourWebApp', [
'ngRoute'
]);
/**
* Setup Main Menu
*/
app.controller('MainNavCtrl', [ '$scope', '$location', function ( $scope, $location) {
$scope.menuItems = [
{
name: 'Home',
url: '/home',
title: 'Welcome to our Website'
},
{
name: 'ABOUT',
url: '/about',
title: 'Know about our work culture'
},
{
name: 'CONTACT',
url: '/contact',
title: 'Get in touch with us'
}
];
$scope.isActive = function (viewLocation) {
return viewLocation === $location.path();
};
}]);
的HTML
<div class="navbar-collapse collapse" ng-controller="MainNavCtrl">
<ul id="add-magic-line" class="nav navbar-nav navbar-right">
<li data-ng-class="{current_page_item: isActive('{{ menuItem.url }}')}" data-ng-repeat="menuItem in menuItems">
<a data-ng-href="#{{menuItem.url}}" title="{{menuItem.title}}">
{{menuItem.name}}
</a>
</li>
</ul>
</div>
感谢@Pylinux。我已经使用了他的技术,还对其进行了修改,以支持下拉菜单的“一个”级别(sub ul / li),因为这正是我所需要的。在下面的小提琴链接中查看实际运行情况。
根据pylinux的答案更新了Fiddle- http://jsfiddle.net/abhatia/en4qxw6g/
为了支持一个级别的下拉菜单,我进行了以下三个更改:
1.为li下的“ a”元素添加了一个dd(下拉)类值(需要具有子ul列表)。
<li><a class="dd">This link points to #/fun5</a>
<ul>
<li><a href="#/fun6?some=data">This link points to #/fun6</a>
</li>
<li><a href="#/fun7?some=data">This link points to #/fun7</a>
</li>
<li><a href="#/fun8?some=data">This link points to #/fun8</a>
</li>
<li><a href="#/fun9?some=data">This link points to #/fun9</a>
</li>
</ul>
</li>
2.更新了Javascript以添加以下新逻辑。
if(angular.element(li).parent().parent().children('a').hasClass("dd"))
{angular.element(li).parent().parent().children('a.dd').addClass('active');}
3.更新了CSS以添加以下内容:
a.active {background-color:red;}
希望这对希望实现单级下拉菜单的人有所帮助。
使用对象作为开关变量。
您可以使用以下方法非常简单地内联:
<ul class="nav navbar-nav">
<li ng-class="{'active':switch.linkOne}" ng-click="switch = {linkOne: true}"><a href="/">Link One</a></li>
<li ng-class="{'active':switch.linkTwo}" ng-click="switch = {link-two: true}"><a href="/link-two">Link Two</a></li>
</ul>
每次单击链接时,切换对象都会被一个新对象替换,其中只有正确的切换对象属性为true。未定义的属性将被评估为false,因此依赖于它们的元素将不会分配活动的类。
您还可以使用此active-link指令 https://stackoverflow.com/a/23138152/1387163
当位置匹配/ url时,父级li将获得活动课程:
<li>
<a href="#!/url" active-link active-link-parent>
</li>
我建议在链接上使用指令。 这是小提琴。
但是它还不完美。提防薯条;)
这是指令的javascript:
angular.module('link', []).
directive('activeLink', ['$location', function(location) {
return {
restrict: 'A',
link: function(scope, element, attrs, controller) {
var clazz = attrs.activeLink;
var path = attrs.href;
path = path.substring(1); //hack because path does not return including hashbang
scope.location = location;
scope.$watch('location.path()', function(newPath) {
if (path === newPath) {
element.addClass(clazz);
} else {
element.removeClass(clazz);
}
});
}
};
}]);
这就是它在html中的用法:
<div ng-app="link">
<a href="#/one" active-link="active">One</a>
<a href="#/two" active-link="active">One</a>
<a href="#" active-link="active">home</a>
</div>
之后使用CSS样式:
.active{ color:red; }
只是为了在辩论中加上两美分,我制作了一个纯角度模块(没有jquery),它也可以用于包含数据的哈希URL。(ig #/this/is/path?this=is&some=data
)
您只需将模块作为依赖项添加auto-active
到菜单的祖先之一即可。像这样:
<ul auto-active>
<li><a href="#/">main</a></li>
<li><a href="#/first">first</a></li>
<li><a href="#/second">second</a></li>
<li><a href="#/third">third</a></li>
</ul>
模块看起来像这样:
(function () {
angular.module('autoActive', [])
.directive('autoActive', ['$location', function ($location) {
return {
restrict: 'A',
scope: false,
link: function (scope, element) {
function setActive() {
var path = $location.path();
if (path) {
angular.forEach(element.find('li'), function (li) {
var anchor = li.querySelector('a');
if (anchor.href.match('#' + path + '(?=\\?|$)')) {
angular.element(li).addClass('active');
} else {
angular.element(li).removeClass('active');
}
});
}
}
setActive();
scope.$on('$locationChangeSuccess', setActive);
}
}
}]);
}());
*(您当然可以只使用指令部分)
**这也是值得注意的是,这并不适用于空哈希(工作IG example.com/#
或只example.com
)它需要有至少example.com/#/
还是只example.com#/
。但这会通过ngResource等自动发生。
这帮了我大忙:
var domain = '{{ DOMAIN }}'; // www.example.com or dev.example.com
var domain_index = window.location.href.indexOf(domain);
var long_app_name = window.location.href.slice(domain_index+domain.length+1);
// this turns http://www.example.com/whatever/whatever to whatever/whatever
app_name = long_app_name.slice(0, long_app_name.indexOf('/'));
//now you are left off with just the first whatever which is usually your app name
然后您使用jquery(也可以与angular一起使用)添加活动类
$('nav a[href*="' + app_name+'"]').closest('li').addClass('active');
当然还有CSS:
.active{background:red;}
如果您有这样的html,这将起作用:
<ul><li><a href="/ee">ee</a></li><li><a href="/dd">dd</a></li></ul>
如果您在www.somesite.com/ee中thaen ee是“ app”,它将自动使用页面url添加活动类,并将背景颜色变为红色。
这是很长的答案,但我想我会分享我的方式:
.run(function($rootScope, $state){
$rootScope.$state = $state;
});
模板:
<ul class="nav navbar-nav">
<li ng-class="{ active: $state.contains('View1') }"><a href="...">View 1</a></li>
<li ng-class="{ active: $state.contains('View2') }"><a href="...">View 2</a></li>
<li ng-class="{ active: $state.contains('View3') }"><a href="...">View 3</a></li>
</ul>
对于那些使用ui-router
:
<ul class="nav navbar-nav">
<li ui-sref-active="active"><a href="...">View 1</a></li>
<li ui-sref-active="active"><a href="...">View 2</a></li>
<li ui-sref-active="active"><a href="...">View 3</a></li>
</ul>
对于完全匹配(例如嵌套状态?),请使用$state.name === 'full/path/to/state'
或ui-sref-active-eq="active"
这是对任何有兴趣的人的另一种解决方案。这样做的好处是它具有较少的依赖性。哎呀,它也不需要Web服务器。因此,它完全是客户端。
HTML:
<nav class="navbar navbar-inverse" ng-controller="topNavBarCtrl"">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#"><span class="glyphicon glyphicon-home" aria-hidden="true"></span></a>
</div>
<ul class="nav navbar-nav">
<li ng-click="selectTab()" ng-class="getTabClass()"><a href="#">Home</a></li>
<li ng-repeat="tab in tabs" ng-click="selectTab(tab)" ng-class="getTabClass(tab)"><a href="#">{{ tab }}</a></li>
</ul>
</div>
说明:
在这里,我们使用指令从angularjs模型动态生成链接ng-repeat
。魔术发生的方法selectTab()
和getTabClass()
神奇之处在于,在控制器中为此导航栏定义了以下呈现的内容。
控制器:
angular.module("app.NavigationControllersModule", [])
// Constant named 'activeTab' holding the value 'active'. We will use this to set the class name of the <li> element that is selected.
.constant("activeTab", "active")
.controller("topNavBarCtrl", function($scope, activeTab){
// Model used for the ng-repeat directive in the template.
$scope.tabs = ["Page 1", "Page 2", "Page 3"];
var selectedTab = null;
// Sets the selectedTab.
$scope.selectTab = function(newTab){
selectedTab = newTab;
};
// Sets class of the selectedTab to 'active'.
$scope.getTabClass = function(tab){
return selectedTab == tab ? activeTab : "";
};
});
说明:
selectTab()
使用ng-click
指令调用方法。因此,当单击链接时,变量selectedTab
将设置为该链接的名称。在HTML中,您可以看到调用此方法时,“主页”选项卡没有任何参数,因此在加载页面时将突出显示该方法。
该getTabClass()
方法通过ng-class
HTML中的指令调用。此方法检查它所在的选项卡是否与selectedTab
变量的值相同。如果为true,则返回“活动”,否则返回“”,该值通过ng-class
指令用作类名。然后,您应用于类的任何CSS都active
将应用于所选选项卡。
只是您必须添加所需的 active
-class和必需的颜色代码。
例如: ng-class="{'active': currentNavSelected}" ng-click="setNav"