Angular 2 ngfor first,last,index loop

前端之家收集整理的这篇文章主要介绍了Angular 2 ngfor first,last,index loop前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在此示例中将第一次出现设置为默认值: plunkr

收到以下错误

Unhandled Promise rejection: Template parse errors:
TypeError: Cannot read property 'toUpperCase' of undefined ("dButtonToggleGroup">
                                                            <md-button-toggle [ERROR ->]*ngFor="let indicador of indicadores; #first = first" value="indicador.id" [checked]="first">
      "): ng:///AppModule/HomeComponent.html@35:78
Parser Error: Unexpected token #,expected identifier,keyword,or string at column 31 in [let indicador of indicadores; #first = first] in ng:///AppModule/HomeComponent.html@35:78 ("       <md-button-toggle *ngFor="let indicador of indicadores; #first = first" value="indicador.id" [ERROR ->][checked]="first">
                                                                <span>{{ indicado"): ng:///AppModule/HomeComponent.html@35:153

哪里不对??

看看这个 plunkr

绑定到变量时,需要使用括号。此外,当您想要获取html中元素的引用时,可以使用hashtag,而不是在类似模板中声明变量。

<md-button-toggle *ngFor="let indicador of indicadores; let first = first;" [value]="indicador.id" [checked]="first"> 
...

编辑:
感谢Christopher Moore
Angular公开以下局部变量:

>指数>首先>最后>甚至>奇怪

原文链接:https://www.f2er.com/angularjs/143994.html

猜你在找的Angularjs相关文章