@ddowns wrote:
The Ionic Angular lifecycle docs recommend using ionViewWillLeave for cleaning up observables.
ionViewWillLeave
- Can be used for cleanup, like unsubscribing from observables. SincengOnDestroy
might not fire when you navigate from the current page, put your cleanup code here if you don’t want it active while the screen is not in view.This seems contradictory to the Angular best practice of using the AsyncPipe in templates to handle the subscription logic of the observable. Is it recommended to avoid using AsyncPipe for Ionic apps, since it only unsubscribes when the component is destroyed?
Posts: 1
Participants: 1