«ngfor» 태그된 질문

8
속성의 값으로 인덱스를 갖는 ngFor
ngFor현재 루프를 유지 하는 간단한 루프가 있습니다 index. 해당 index값을 속성 에 저장하여 인쇄 할 수 있습니다. 그러나 이것이 어떻게 작동하는지 알 수 없습니다. 나는 기본적으로 이것을 가지고있다 : <ul *ngFor="#item of items; #i = index" data-index="#i"> <li>{{item}}</li> </ul> #i속성에 값을 저장하고 싶습니다 data-index. 몇 가지 방법을 시도했지만 그중 아무것도 …
571 angular  ngfor 

15
동일한 요소에서 * ngIf 및 * ngFor 오류 발생
나는 각도의를 사용하려고 시도에 문제에 봉착 *ngFor하고*ngIf 같은 요소 . 에서 모음을 반복하려고하면 모음 의 속성에 액세스하려고 할 때 *ngFor모음이 표시되어 null실패합니다. @Component({ selector: 'shell', template: ` <h3>Shell</h3><button (click)="toggle()">Toggle!</button> <div *ngIf="show" *ngFor="let thing of stuff"> {{log(thing)}} <span>{{thing.name}}</span> </div> ` }) export class ShellComponent implements OnInit { public stuff:any[] = []; …

13
예외 : 알려진 기본 속성이 아니기 때문에 'ngFor'에 바인딩 할 수 없습니다.
내가 뭘 잘못하고 있죠? import {bootstrap, Component} from 'angular2/angular2' @Component({ selector: 'conf-talks', template: `<div *ngFor="talk of talks"> {{talk.title}} by {{talk.speaker}} <p>{{talk.description}} </div>` }) class ConfTalks { talks = [ {title: 't1', speaker: 'Brian', description: 'talk 1'}, {title: 't2', speaker: 'Julie', description: 'talk 2'}]; } @Component({ selector: 'my-app', directives: [ConfTalks], template: …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.