gpt4 book ai didi

events - 绑定(bind)中的 Angular 2 绑定(bind)。事件内插值

转载 作者:太空狗 更新时间:2023-10-29 17:12:46 24 4
gpt4 key购买 nike

尝试执行以下操作并出现“Got interpolation ({{}}) where expression was expected”错误。

<ul>
<li *ngFor="#item of items">
<a href='' (click)="foo('{{item.name}}')">{{item.name}}</a>
</li>
</ul>

谢谢!

最佳答案

不要在任何事件处理程序代码(在 View 上)中使用 {{}}(插值),直接传递表达式,这将针对 Component 上下文进行评估(this),就像在这里您试图将 item.name 传递给 foo 函数一样。所以删除 {{}} 括号就可以了。

<a href="" (click)="foo(item.name)">
{{item.name}}
</a>

关于events - 绑定(bind)中的 Angular 2 绑定(bind)。事件内插值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36659854/

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