gpt4 book ai didi

angular - Angular 9 中的 *ngFor 问题,当我尝试在 anchor 标记中使用它时,它显示 "No Directive is matched on attribute ngFor"

转载 作者:行者123 更新时间:2023-12-05 08:30:56 28 4
gpt4 key购买 nike

<a *ngFor="let recipe for recipes" href="#" class="list-group-item clearfix">
<div class="pull left">
<h4 class="list-group-item-heading">{{ recipe.name }}</h4>
<p class="list-group-item-text">{{ recipe.description }}</p>
<span class="pull-right">
<img src="" alt="{{recipe.name}}" class="img-responsive" style="max-height: 50px"/>
</span>
</div>
</a>

由于这条消息,我不能在这里使用 ngFor 指令

最佳答案

打字错误:

而不是使用 let recipe for recipes 你应该像这样使用:

<a *ngFor="let recipe of recipes" href="#" class="list-group-item clearfix">

关于angular - Angular 9 中的 *ngFor 问题,当我尝试在 anchor 标记中使用它时,它显示 "No Directive is matched on attribute ngFor",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61222809/

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