Angular 4 kullanıyorum ve bazı nesneyi yönlendiriciye aktarmak istiyorum ancak sorgu paramızlarını güncellemeden.Açısal 4: Nesneyi Geçiş Yapmadan Rotalara Geçme Sorgu Params
user.component.ts
this.router.navigate(["/profile",{
action: 'edit',
user: {id: 1, name: 'test', email: '[email protected]'}
}]);
uygulama-routing.module.ts
{ path: 'profile', component: UserProfileComponent }
kullanıcı profile.component.ts
this.route.params.subscribe(params => {
});
Herhangi bir yardım? http://blogs.msmvps.com/deborahk/build-a-simple-angular-service-to-share-data/
paylaşılan hizmeti kullan: Burada –