在Angular 2中,如果我有像< button>< / button>这样的元素如何有条件地
添加像[routerLink] =“[‘SomeRoute’]这样的
属性指令呢?
据我所知,没有直接的
方法可以做到这一点。有一些
解决方法……我使用过这样的东西:
<button *ngIf="condition" [routerLink]="['SomeRoute']></button>
<button *ngIf="!condition"></button>
这里有类似的讨论:link
原文链接:https://www.f2er.com/angularjs/143917.html