我有一个列表组被定义为 recipe-items 的列表。我使用子路由,以便在用户单击列表元素时显示项目的描述。到目前为止,点击事件和路由工作正常,但我想将点击的项目标记为有效。
配方-list.component.html
<app-recipe-item
*ngFor="let recipeEl of recipes; let i = index"
[recipe]="recipeEl"
[routerLink]="i"
style="cursor: pointer;"
>
</app-recipe-item>
为了做到这一点,我尝试在嵌套的RecipeItemComponent
中使用routerLinkActive指令,但看起来该指令超出了嵌套组件的范围。
配方-item.component.html
<div class="list-group">
<a
class="list-group-item list-group-item-action d-flex justify-content-between align-items-start"
routerLinkActive="active"
>
TO BE MARKED AS ACTIVE WHEN CLICKED
</a>
</div>
我错过了什么?即使使用 localRef ,也无法在嵌套组件中检索其值。
答案 0 :(得分:3)
RouterLinkActive
指令及其属性isActive
使用RouterLinkActive
和本地引用,可以将isActive
的值传递给嵌套组件的@Input()
属性,以便在其模板中使用它触发ngClass
。
配方-list.component.html
<app-recipe-item
*ngFor="let recipeEl of recipes; let i = index"
[recipe]="recipeEl"
[routerLink]="i"
routerLinkActive
#rla="routerLinkActive"
[currentlySelected]="rla.isActive"
style="cursor: pointer;"
>
</app-recipe-item>
配方-item.component.ts
@Component({
selector: 'app-recipe-item',
templateUrl: './recipe-item.component.html',
styleUrls: ['./recipe-item.component.css']
})
export class RecipeItemComponent implements OnInit {
@Input() recipe: Recipe;
@Input() currentlySelected: boolean;
配方-item.component.html
...
<a [ngClass]="{active: currentlySelected}">
...
答案 1 :(得分:1)
routerLinkActive
指令通过订阅路由器的导航事件为活动链接添加特殊样式,请参阅 source code 。
您也可以在app-recipe-item
组件中执行相同操作,而无需使用routerLinkActive指令。(代码相同)
另一种方式,routerLinkActive
提供isActive
属性,显示当前routerLink是否处于活动状态。您也可以将其作为组件注入,以检索其值并更改为活动样式。
<app-recipe-item
*ngFor="let recipeEl of recipes;
let i = index" [recipe]="recipeEl"
[routerLink]="i" style="cursor: pointer;"
routerLinkActive
>
</app-recipe-item>
constructor(
@Inject(RouterLinkActive) private activeRouter: RouterLinkActive // inject
) { }
<a class="list-group-item list-group-item-action d-flex justify-content-between align-items-start"
[ngClass]="{active: activeRouter.isActive}"
>
TO BE MARKED AS ACTIVE WHEN CLICKED
</a>
参考 demo 。