Html – How to detect view refresh in Angular?
I have a component that displays dynamic, read-only data. For example: <div>{{getText()}}</div> I noticed that getText is being invoked over and over by Angular, even if there is seemingly no need to do so, i.e. no data has changed. How…