I have two route:
{path: 'route1',component: component1,resolve: {parameters: resolver1}}
{path: 'route2',component: component2,resolve: {parameters: resolver2}}
I navigate from route1 to route2 , the route2's resolver react before Ondestroy
route1 , is it logical ?
My issue is that, if I call a service on resolver2 which update an object1 bound with an observable on the page1 all observable's object1 on this page1 will react .
I find that weird because we leave the page . Furthermore , if requests of service are present in the Observable they also react and so we have too much request's service .