8
कोणीय अपवाद: 'ngForIn' के लिए बाध्य नहीं कर सकता क्योंकि यह एक ज्ञात मूल संपत्ति नहीं है
मैं क्या गलत कर रहा हूं? import {bootstrap, Component} from 'angular2/angular2' @Component({ selector: 'conf-talks', template: `<div *ngFor="let talk in 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', …