gpt4 book ai didi

html - Angular4+ 在 HTML 模板中显示/隐藏子元素

转载 作者:太空狗 更新时间:2023-10-29 19:26:40 25 4
gpt4 key购买 nike

我正在尝试在我的 Angular 应用程序中实现一个简单的“悬停在评论上以显示回复按钮”的实现。有没有办法通过仅使用模板引用变量来实现这种效果?

有点像……

<mat-list>
<mat-list-item *ngFor="let comment of comments" #SomeRefToThisParticularElement (mouseenter)="SomeRefToThisParticularElement=true" (mouseleave)="SomeRefToThisParticularElement=false">
<h4>{{comment.text}}</h4>
<p> 3 replies </p>
<mat-icon *ngIf="SomeRefToThisParticularElement==true">reply</mat-icon>
</mat-list-item>
</mat-list>

显然,上面的方法不起作用,因为 Angular 不允许您按照我在上面的代码片段中显示的方式分配或设置模板变量。但我想探索在 html 模板级别实现此目的的选项。

这是执行此操作的好方法吗?

编辑点击here获取可能解决方案的摘要。

最佳答案

试试这个,根据数组的悬停索引隐藏和显示。

<mat-list>
<mat-list-item *ngFor="let comment of comments; let i = index" (mouseenter)="commentIndex= i" (mouseleave)="commentIndex = -1">
<h4 mat-line>{{comment.text}}</h4>
<p mat-line style="font-size:x-small; color:rgba(0, 0, 0, 0.54)"> 3 replies </p>
<mat-icon *ngIf="commentIndex == i">reply</mat-icon>
</mat-list-item>
</mat-list>

关于html - Angular4+ 在 HTML 模板中显示/隐藏子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49233616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com