我有3个根组件,由根AppModule引导.
你如何为其中一个组件指定@Input()参数?
也不
<app-modal [id]="'hard-coded value'"></app-modal> <app-modal [id]="constantExportedByAppmodule"></app-modal>
由AppModalComponent获取:
@Input() id: string;
它是未定义的.
据我所知,你不能将@Input()传递给bootstraped组件.
原文链接:https://www.f2er.com/angularjs/141566.htmlindex.html:
<my-app myAttribute="myAttributeValue"> <div>Loading...</div> </my-app>
app.component.ts:
@Component({ selector: 'my-app',templateUrl: 'app.component.html',styleUrls: ['app.component.css'] }) export class AppComponent { constructor(private elementRef:ElementRef) { let myAttribute = this.elementRef.nativeElement.getAttribute('myAttribute'); } }