EmbeddedViewRef << ViewRef << ChangeDetectorRef
ChangeDetectorRef里面基本都是变化检测相关的方法
ViewRef 里面只有一个销毁view的方法
EmbeddedViewRef中有get context()和get rootNodes()两个方法
@Component({
selector: ‘my-app’,
template:
,
<h1>Welcome to Angular World</h1>
<template #tpl>
<span>I am span in template</span>
</template>
})
当调用TemplateRef的 createEmbeddedView 方法后返回了 EmbeddedViewRef视图对象。该视图对象的 rootNodes 属性包含了 模板中的内容。
原文链接:https://www.f2er.com/angularjs/146443.html