最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - angular2 - Pass value from parent route to child route - Stack Overflow

programmeradmin1浏览0评论

I have a route called home and it has three child routes, documents, mail and trash. In the home route ponent it has a variable called 'user'. I know there are a few ways of passing info between parent and child ponents highlighted here, but how am I suppose to pass info between parent/child routes.

{ path: 'home',  ponent: HomeComponent, children: [
        { path: 'documents',  ponent: DocumentsComponent },
        { path: 'mail',  ponent: MailComponent },
        { path: 'trash',  ponent: TrashComponent },
    ]
},

Service

import { Injectable } from '@angular/core';
@Injectable()
export class HomeService {
  // Mock user, for testing  
  myUser = {name:"John", loggedIn:true};
  // Is Super Admin
  isLogged():boolean {
    if(this.myUser.role == true){
      return true ; 
    }
    return false ; 
  }
}

Component

  constructor(public router: Router, public http: Http, private homeService: HomeService) {

  }

  isLogged(){
    return this.homeService.isLogged(); 
  }

Template

<div class="side-nav fixed" >
    <li style="list-style: none">
        <img alt="avatar" class="circle valign profile-image" height="64" src=
        "../images/avatar.jpg" width="64">
        <div class="right profile-name">
            <!-- Value not changing even with service --> 
            {{myUser.role}} 
        </div>
    </li>

I have a route called home and it has three child routes, documents, mail and trash. In the home route ponent it has a variable called 'user'. I know there are a few ways of passing info between parent and child ponents highlighted here, but how am I suppose to pass info between parent/child routes.

{ path: 'home',  ponent: HomeComponent, children: [
        { path: 'documents',  ponent: DocumentsComponent },
        { path: 'mail',  ponent: MailComponent },
        { path: 'trash',  ponent: TrashComponent },
    ]
},

Service

import { Injectable } from '@angular/core';
@Injectable()
export class HomeService {
  // Mock user, for testing  
  myUser = {name:"John", loggedIn:true};
  // Is Super Admin
  isLogged():boolean {
    if(this.myUser.role == true){
      return true ; 
    }
    return false ; 
  }
}

Component

  constructor(public router: Router, public http: Http, private homeService: HomeService) {

  }

  isLogged(){
    return this.homeService.isLogged(); 
  }

Template

<div class="side-nav fixed" >
    <li style="list-style: none">
        <img alt="avatar" class="circle valign profile-image" height="64" src=
        "../images/avatar.jpg" width="64">
        <div class="right profile-name">
            <!-- Value not changing even with service --> 
            {{myUser.role}} 
        </div>
    </li>

Share Improve this question edited Aug 3, 2016 at 18:48 AJ_ asked Aug 3, 2016 at 2:43 AJ_AJ_ 3,98711 gold badges50 silver badges83 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

You may use a mon service to pass data like explained in the Angular Documentation

Basically you may create a Service which will have a user object, which can be updated once your parent route gets loaded or with some action on parent ponent.

UserService

   import { Injectable } from '@angular/core';
   import { Subject }    from 'rxjs/Subject';

   @Injectable()
   export class UserService {
     // Observable user 
     user = new Subject<string>();
   }

And then when the child route ponent gets loaded you may retrieve the value from the Service.

HomeComponent

 @Component({
   ... 
 })
 export class HomeComponent{
   ... 
   constructor(private userService:UserService ){}
   someMethod = () =>{
      this.userService.user.next(<pass user object>);
   }
 }

MailComponent

 @Component({
   ... 
 })
 export class HomeComponent{
   ... 
   constructor(private userService:UserService ){
     this.userService.user.subscribe(userChanged);  
   }

   userChanged = (user) => {
     // Do stuff with user
   }
 }

Service object will be same instance in child if you add the provider in the parent.

Check out :- https://angular.io/docs/ts/latest/guide/router.html#!#link-parameters-array

You can pass data while changing routes on click as :-

<a [routerLink]="['/crisis-center', { foo: myVar }]">Crisis Center</a>
发布评论

评论列表(0)

  1. 暂无评论