[Fixed] How can I write data attributes using Angular?

Issue

When I try to use a data attribute in my template, like this:

<ol class="viewer-nav">
  <li *ngFor="#section of sections" data-value="{{ section.value }}">
    {{ section.text }}
  </li>
</ol>

Angular 2 crashes with:

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

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

I’m obviously missing something with the syntax, please help.

Solution

Use attribute binding syntax instead

<ol class="viewer-nav"><li *ngFor="let section of sections" 
    [attr.data-sectionvalue]="section.value">{{ section.text }}</li>  
</ol>

or

<ol class="viewer-nav"><li *ngFor="let section of sections" 
    attr.data-sectionvalue="{{section.value}}">{{ section.text }}</li>  
</ol>

See also :

Leave a Reply

(*) Required, Your email will not be published