Why do we need `ngDoCheck`

前端 未结 3 1552
臣服心动
臣服心动 2020-12-07 10:46

I can\'t seem to figure out why I need ngDoCheck lifecycle hook other than for simple notification, particularly how writing code inside of it makes a differenc

3条回答
  •  生来不讨喜
    2020-12-07 11:10

    In simple terms :

    It's generally a component check on following occasions:

    • Update child component input bindings
    • Update DOM interpolations
    • Update query list

    Use :

    Deep Watch changes which angular misses out.

提交回复
热议问题