angular2 – 角2数据属性

前端之家收集整理的这篇文章主要介绍了angular2 – 角2数据属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我觉得我缺少一些东西,但是当我尝试在我的模板中使用数据属性,像这样:
<ol class="viewer-nav"><li *ngFor="#section of sections" 
    data-sectionvalue="{{ section.value }}">{{ section.text }}</li></ol>

Angular2崩溃:

EXCEPTION: Template parse errors: Can’t bind to ‘sectionvalue’ since
it isn’t a known native property (“

]data-sectionvalue=”{{ section.value }}”>{{ section.text }}

我明显缺少一些与语法,请帮助。

请改用属性绑定语法
<ol class="viewer-nav"><li *ngFor="let section of sections" 
    [attr.data-sectionvalue]="section.value">{{ section.text }}</li>  
</ol>

要么

<ol class="viewer-nav"><li *ngFor="let section of sections" 
    attr.data-sectionvalue="{{section.value}}">{{ section.text }}</li>  
</ol>
原文链接:https://www.f2er.com/angularjs/146380.html

猜你在找的Angularjs相关文章