angular双向绑定数据,视图不能及时更新时,进行强制更新
(1)从core中导入ChangeDetectorRef
(2)在构造函数中注入private changeDetectorRef: ChangeDetectorRef
(3)在需要强制更新视图时调用:this.changeDetectorRef.detectChanges();
dom新增节点后需要时间来更新dom结构,要获取新的节点内容需要等待数ms,否则会出现无法获取节点的情况。
angular双向绑定数据,视图不能及时更新时,进行强制更新
(1)从core中导入ChangeDetectorRef
(2)在构造函数中注入private changeDetectorRef: ChangeDetectorRef
(3)在需要强制更新视图时调用:this.changeDetectorRef.detectChanges();
dom新增节点后需要时间来更新dom结构,要获取新的节点内容需要等待数ms,否则会出现无法获取节点的情况。
本文标题:烂笔头
本文链接:https://www.haomeiwen.com/subject/vokxixtx.html
网友评论