本文介绍了路由无效时,Angular2添加类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Angular2具有 routerLinkActive 指令,如果路由处于活动状态,该指令会将class添加到元素中.我想在路线无效时添加一个班级.有办法吗?
Angular2 has a routerLinkActive directive which adds class to the element if the route is active. I want to add a class when route is inactive. Is there a way to do this?
推荐答案
<a routerLink="/user/bob" routerLinkActive #rla="routerLinkActive" [ngClass]="rla.isActive ? 'classIfActive' : 'classIfNotActive'">
</a>
这篇关于路由无效时,Angular2添加类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!