angular2 – @ViewChild和@ContentChild有什么区别?
发布时间:2020-12-17 09:00:54 所属栏目:安全 来源:网络整理
导读:Angular 2提供@ViewChild,@ViewChildren,@ContentChild和@ContentChildren装饰器,用于查询组件的后代元素。前两者和后两者有什么区别? 我将使用Shadow DOM和Light DOM术语来回答您的问题(它来自Web组件,参见 here)。一般来说: Shadow DOM – 是您的组
Angular 2提供@ViewChild,@ViewChildren,@ContentChild和@ContentChildren装饰器,用于查询组件的后代元素。前两者和后两者有什么区别?
我将使用Shadow DOM和Light DOM术语来回答您的问题(它来自Web组件,参见
here)。一般来说:
> Shadow DOM – 是您的组件的内部DOM,由您(作为组件的创建者)定义,并从最终用户隐藏。例如: @Component({ selector: 'some-component',template: ` <h1>I am Shadow DOM!</h1> <h2>Nice to meet you :)</h2> <ng-content></ng-content> `; }) class SomeComponent { /* ... */ } > Light DOM – 是组件的最终用户提供到组件中的DOM。例如: @Component({ selector: 'another-component',directives: [SomeComponent],template: ` <some-component> <h1>Hi! I am Light DOM!</h1> <h2>So happy to see you!</h2> </some-component> ` }) class AnotherComponent { /* ... */ } 所以,你的问题的答案很简单:
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |