Angular中不一樣的組件間傳值與通訊的方法

主要分爲父子組件和非父子組件部分。app

父子組件間參數與通信方法this

使用事件通訊(EventEmitter,@Output):spa

場景:能夠在父子組件之間進行通訊,通常使用在子組件傳遞消息給父組件;.net

步驟:設計

  1. 子組件建立事件EventEmitter對象,使用@output公開出去;
  2. 父組件監聽子組件@output出來的方法,而後處理事件。

代碼:code

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// child 組件
  @Component({
   selector: 'app-child' ,
   template: '' ,
   styles: [``]
  })
  export class AppChildComponent implements OnInit {
   @Output() onVoted: EventEmitter<any> = new EventEmitter();
   ngOnInit(): void {
    this .onVoted.emit(1);
   }
  }
  // parent 組件
  @Component({
   selector: 'app-parent' ,
   template: `
    <app-child (onVoted)= "onListen($event)" ></app-child>
   `,
   styles: [``]
  })
  export class AppParentComponent implements OnInit {
   ngOnInit(): void {
    throw new Error( 'Method not implemented.' );
   }
   onListen(data: any): void {
    console.log( 'TAG' + '---------->>>' + data);
   }
  }

使用@ViewChild和@ViewChildren:router

場景:通常用於父組件給子組件傳遞信息,或者父組件調用子組件的方法;htm

步驟:對象

  1. 父組件裏面使用子組件;
  2. 父組件裏面使用@ViewChild得到子組件對象。
  3. 父組件使用子組件對象操控子組件;(傳遞信息或者調用方法)。

代碼:生命週期

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 子組件
@Component({
  selector: 'app-child' ,
  template: '' ,
  styles: [``]
})
export class AppChildComponent2 implements OnInit {
   data = 1;
   ngOnInit(): void {
  }
  getData(): void {
   console.log( 'TAG' + '---------->>>' + 111);
  }
}
// 父組件
@Component({
  selector: 'app-parent2' ,
  template: `
   <app-child></app-child>
  `,
  styles: [``]
})
export class AppParentComponent2 implements OnInit {
  @ViewChild(AppChildComponent2) child: AppChildComponent2;
  ngOnInit(): void {
   this .child.getData(); // 父組件得到子組件方法
   console.log( 'TAG' + '---------->>>' + this .child.data); // 父組件得到子組件屬性
  }
}

非父子組件參數傳遞與通信方法

經過路由參數

場景:一個組件能夠經過路由的方式跳轉到另外一個組件 如:列表與編輯

步驟:

  1. A組件經過routerLink或router.navigate或router.navigateByUrl進行頁面跳轉到B組件
  2. B組件接受這些參數

此方法只適用於參數傳遞,組件間的參數一旦接收就不會變化

代碼

傳遞方式

routerLink

?
1
2
3
4
5
<a routerLink=[ "/exampledetail" ,id]></a>
 
routerLink=[ "/exampledetail" ,{queryParams:object}]
 
routerLink=[ "/exampledetail" ,{queryParams: 'id' : '1' , 'name' : 'yxman' }];

router.navigate

?
1
2
this .router.navigate([ '/exampledetail' ,id]);
this .router.navigate([ '/exampledetail' ],{queryParams:{ 'name' : 'yxman' }});

router.navigateByUrl

?
1
2
this .router.navigateByUrl( '/exampledetail/id' );
this .router.navigateByUrl( '/exampledetail' ,{queryParams:{ 'name' : 'yxman' }});

傳參方傳參以後,接收方2種接收方式以下:

snapshot

?
1
2
3
4
5
6
7
8
import { ActivateRoute } from '@angular/router' ;
public data: any;
export class ExampledetailComponent implements OnInit {
   constructor( public route: ActivateRoute ) { };
   ngOnInit(){
     this .data = this .route.snapshot.params[ 'id' ];
   };
}

queryParams

?
1
2
3
4
5
6
7
8
9
import { ActivateRoute } from '@angular/router' ;
export class ExampledetailComponent implements OnInit {
   public data: any;
   constructor( public activeRoute:ActivateRoute ) { };
   ngOnInit(){
     this .activeRoute.queryParams.subscribe(params => {
     this .data = params[ 'name' ];
   });
};

使用服務Service進行通訊,即:兩個組件同時注入某個服務

場景:須要通訊的兩個組件不是父子組件或者不是相鄰組件;固然,也能夠是任意組件。

步驟:

  1. 新建一個服務,組件A和組件B同時注入該服務;
  2. 組件A從服務得到數據,或者想服務傳輸數據
  3. 組件B從服務得到數據,或者想服務傳輸數據。

代碼:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// 組件A
@Component({
  selector: 'app-a' ,
  template: '' ,
  styles: [``]
})
export class AppComponentA implements OnInit {
  constructor(private message: MessageService) {
  }
  ngOnInit(): void {
   // 組件A發送消息3
   this .message.sendMessage(3);
   const b = this .message.getMessage(); // 組件A接收消息;
  }
}
// 組件B
@Component({
  selector: 'app-b' ,
  template: `
   <app-a></app-a>
  `,
  styles: [``]
})
export class AppComponentB implements OnInit {
  constructor(private message: MessageService) {
  }
  ngOnInit(): void {
   // 組件B得到消息
   const a = this .message.getMessage();
   this .message.sendMessage(5); // 組件B發送消息
  }
}

消息服務模塊

場景:這裏涉及到一個項目,裏面須要實現的是全部組件之間都有可能通訊,或者是一個組件須要給幾個組件通訊,且不可經過路由進行傳參。

設計方式:

  1. 使用RxJs,定義一個服務模塊MessageService,全部的信息都註冊該服務;
  2. 須要發消息的地方,調用該服務的方法;
  3. 須要接受信息的地方使用,調用接受信息的方法,得到一個Subscription對象,而後監聽信息;
  4. 固然,在每個組件Destory的時候,須要
?
1
this .subscription.unsubscribe();

代碼:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// 消息中專服務
@Injectable()
export class MessageService {
  private subject = new Subject<any>();
  /**
  * content模塊裏面進行信息傳輸,相似廣播
  * @param type 發送的信息類型
  *    1-你的信息
  *    2-你的信息
  *    3-你的信息
  *    4-你的信息
  *    5-你的信息
  */
  sendMessage(type: number) {
   console.log( 'TAG' + '---------->>>' + type);
   this .subject.next({type: type});
  }
  /**
  * 清理消息
  */
  clearMessage() {
   this .subject.next();
  }
  /**
  * 得到消息
  * @returns {Observable<any>} 返回消息監聽
  */
  getMessage(): Observable<any> {
   return this .subject.asObservable();
  }
}
// 使用該服務的地方,須要註冊MessageService服務;
constructor(private message: MessageService) {
}
// 消息接受的地方;
public subscription: Subscription;
ngAfterViewInit(): void {
   this .subscription = this .message.getMessage().subscribe(msg => {
    // 根據msg,來處理你的業務邏輯。
   })
  }
 
  // 組件生命週期結束的時候,記得註銷一下,否則會卡;
  ngOnDestroy(): void {
   this .subscription.unsubscribe();
  }
 
  // 調用該服務的方法,發送信息;
  send():void {
   this .message.sendMessage(‘我發消息了,大家接受下'); // 發送信息消息
  }

 

這裏的MessageService,就至關於使用廣播機制,在全部的組件之間傳遞信息;無論是數字,字符串,仍是對象都是能夠傳遞的,並且這裏的傳播速度也是很快的。

相關文章
相關標籤/搜索