angular's ng-init alternative in Angular 2

后端 未结 8 871
遇见更好的自我
遇见更好的自我 2020-12-01 12:14

What is the alternative of ng-init=\"myText=\'Hello World!\'\" in Angular 2 to add in the template, not in the component

 
8条回答
  •  旧巷少年郎
    2020-12-01 12:56

    Little Update! In the latest versions of Angular this will not work:

    @Directive({
     selector: 'ngInit',
     exportAs: 'ngInit'
    })
    

    you should use '[]':

    @Directive({
       selector: '[ngInit]',
       exportAs: 'ngInit'
    })
    

提交回复
热议问题