加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

Angular组件变量是否应在ngOnDestroy()中设置为null?

发布时间:2020-12-17 17:24:06 所属栏目:安全 来源:网络整理
导读:Angular文档说 ngOnDestroy(): Cleanup just before Angular destroys the directive/component. Unsubscribe Observables and detach event handlers to avoid memory leaks. Called just before Angular destroys the directive/component. 一些开发人员说
Angular文档说

ngOnDestroy(): Cleanup just before Angular destroys the directive/component. Unsubscribe Observables and detach event handlers to avoid memory leaks.
Called just before Angular destroys the directive/component.

一些开发人员说组件属性(类变量)也应该设置为null以避免内存泄漏.这是真的?

export class TestComponent implements OnInit,OnDestroy {

  public name: string;
  constructor() { }

  ngOnInit() {
    this.name = 'John';
  }

  ngOnDestroy() {
   // is this code really necessary.
   this.name = null;
  }

}

解决方法

不,你不需要那个. Component只是一个类,当它显示时,就会创建一个实例.当组件被销毁时,关联的对象将被保留而不会被引用,并且尽快将其进行垃圾回收.

正如文档所述,您只需要在Observables和事件处理程序的情况下使用,因为如果它们处于活动状态,它们将不会被垃圾收集器删除.

Unsubscribe Observables and detach event handlers to avoid memory leaks

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读