Angular组件元数据
程序开发
2023-09-12 06:31:56
2019独角兽企业重金招聘Python工程师标准>>>
大部分元数据浅显易懂,这里挑选出相对复杂的进行说明:
queries :
在组件中主要有两种查询,视图查询(ViewChild/ViewChildren)和内容查询(ContentChildren),它们分别会在ngAfterViewInit和ngAfterContentInit回调函数被调用之前设置。
如:
queries: {xx: new ContentChildren(xxx)
}
export class AA implement AfterContentInit {xx: QueryList;ngAfterContentInit() {//对xx进行操作}
animations :
需要先从@angular/animations中引入用于动画的函数,API中以F标识。设置好动画后在模版中通过@triggerName=”state“来使用它。
encapsulation :
转载于:https://my.oschina.net/u/3412211/blog/894877
标签:
上一篇:
Angular 路线图正式发布!
下一篇:
相关文章
-
无相关信息