什么是Angular2中的ChangeDetectionStrategy以及何时使用OnPush Vs Default?

前端之家收集整理的这篇文章主要介绍了什么是Angular2中的ChangeDetectionStrategy以及何时使用OnPush Vs Default?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我偶然在 ngrx documentation中看到ChangeDetectionStrategy.它使用的是OnPush.

什么是Angular2中的ChangeDetectionStrategy,以及何时使用OnPush Vs Default?

如果对象是不可变的并且您没有更改组件中对象的状态,请使用OnPush策略.它将执行更好而不是默认,其中对象的每次更改都会使运行更改检测器解决更改.在 Change Detection Strategy: OnPush中描述了或多或少的类似

To inform Angular that we are going to comply with the conditions mentioned before to improve performance,we will use the OnPush change detection strategy

Angular的文档说

07001

  • OnPush means that the change detector’s mode will be set to CheckOnce during hydration.

  • Default means that the change detector’s mode will be set to CheckAlways during hydration.

原文链接:https://www.f2er.com/angularjs/143802.html

猜你在找的Angularjs相关文章