Angular 2同级组件通信

时间:2016-03-09 06:24:22

标签: javascript angular typescript

我有一个ListComponent。在ListComponent中单击某个项目时,该项目的详细信息应显示在DetailComponent中。两者都在屏幕上同时出现,因此不涉及路由。

如何告诉DetailComponent单击ListComponent中的哪个项目?

我考虑过将一个事件发送到父级(AppComponent),并让父级使用@Input在DetailComponent上设置selectedItem.id。或者我可以使用具有可观察订阅的共享服务。

编辑:但是,如果我需要执行其他代码,则通过事件+ @Input设置所选项目不会触发DetailComponent。所以我不确定这是一个可以接受的解决方案。

但是这两种方法看起来都比Angular 1的做法复杂得多,这种做法要么通过$ rootScope。$ broadcast或$ scope。$ parent。$ broadcast。

Angular 2中的所有内容都是组件,我很惊讶没有关于组件通信的更多信息。

有没有其他/更直接的方法来实现这一目标?

12 个答案:

答案 0 :(得分:62)

已更新至rc.4: 当尝试在角度2中的兄弟组件之间传递数据时,现在最简单的方法(angular.rc.4)是利用angular2的层次依赖注入并创建共享服务。

这将是服务:

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

@Injectable()
export class SharedService {
    dataArray: string[] = [];

    insertData(data: string){
        this.dataArray.unshift(data);
    }
}

现在,这里将是PARENT组件

import {Component} from '@angular/core';
import {SharedService} from './shared.service';
import {ChildComponent} from './child.component';
import {ChildSiblingComponent} from './child-sibling.component';
@Component({
    selector: 'parent-component',
    template: `
        <h1>Parent</h1>
        <div>
            <child-component></child-component>
            <child-sibling-component></child-sibling-component>
        </div>
    `,
    providers: [SharedService],
    directives: [ChildComponent, ChildSiblingComponent]
})
export class parentComponent{

} 

及其两个孩子

孩子1

import {Component, OnInit} from '@angular/core';
import {SharedService} from './shared.service'

@Component({
    selector: 'child-component',
    template: `
        <h1>I am a child</h1>
        <div>
            <ul *ngFor="#data in data">
                <li>{{data}}</li>
            </ul>
        </div>
    `
})
export class ChildComponent implements OnInit{
    data: string[] = [];
    constructor(
        private _sharedService: SharedService) { }
    ngOnInit():any {
        this.data = this._sharedService.dataArray;
    }
}
孩子2(这是兄弟姐妹)

import {Component} from 'angular2/core';
import {SharedService} from './shared.service'

@Component({
    selector: 'child-sibling-component',
    template: `
        <h1>I am a child</h1>
        <input type="text" [(ngModel)]="data"/>
        <button (click)="addData()"></button>
    `
})
export class ChildSiblingComponent{
    data: string = 'Testing data';
    constructor(
        private _sharedService: SharedService){}
    addData(){
        this._sharedService.insertData(this.data);
        this.data = '';
    }
}

现在:使用此方法时需要注意的事项。

  1. 仅在PARENT组件中包含共享服务的服务提供者,而不包括子项。
  2. 您仍然必须包含构造函数并在子项中导入服务
  3. 这个答案最初是针对早期角度2 beta版本而回答的。所有改变的都是import语句,所以如果您偶然使用原始版本,则需要更新所有内容。

答案 1 :(得分:24)

如果是2个不同的组件(不是嵌套组件,父\ child \ grandchild),我建议你这样做:

  

MissionService:

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

@Injectable()

export class MissionService {
  // Observable string sources
  private missionAnnouncedSource = new Subject<string>();
  private missionConfirmedSource = new Subject<string>();
  // Observable string streams
  missionAnnounced$ = this.missionAnnouncedSource.asObservable();
  missionConfirmed$ = this.missionConfirmedSource.asObservable();
  // Service message commands
  announceMission(mission: string) {
    this.missionAnnouncedSource.next(mission);
  }
  confirmMission(astronaut: string) {
    this.missionConfirmedSource.next(astronaut);
  }

}
  

宇航员成员:

import { Component, Input, OnDestroy } from '@angular/core';
import { MissionService } from './mission.service';
import { Subscription }   from 'rxjs/Subscription';
@Component({
  selector: 'my-astronaut',
  template: `
    <p>
      {{astronaut}}: <strong>{{mission}}</strong>
      <button
        (click)="confirm()"
        [disabled]="!announced || confirmed">
        Confirm
      </button>
    </p>
  `
})
export class AstronautComponent implements OnDestroy {
  @Input() astronaut: string;
  mission = '<no mission announced>';
  confirmed = false;
  announced = false;
  subscription: Subscription;
  constructor(private missionService: MissionService) {
    this.subscription = missionService.missionAnnounced$.subscribe(
      mission => {
        this.mission = mission;
        this.announced = true;
        this.confirmed = false;
    });
  }
  confirm() {
    this.confirmed = true;
    this.missionService.confirmMission(this.astronaut);
  }
  ngOnDestroy() {
    // prevent memory leak when component destroyed
    this.subscription.unsubscribe();
  }
}
  

来源:Parent and children communicate via a service

答案 2 :(得分:11)

执行此操作的一种方法是使用shared service

但是我发现以下内容 解决方案更简单,它允许在2个兄弟姐妹之间共享数据。(我仅在 Angular 5 上测试了这个)

在您的父组件模板中:

<!-- Assigns "AppSibling1Component" instance to variable "data" -->
<app-sibling1 #data></app-sibling1>
<!-- Passes the variable "data" to AppSibling2Component instance -->
<app-sibling2 [data]="data"></app-sibling2> 

应用-sibling2.component.ts

import { AppSibling1Component } from '../app-sibling1/app-sibling1.component';
...

export class AppSibling2Component {
   ...
   @Input() data: AppSibling1Component;
   ...
}

答案 3 :(得分:9)

这里有一个讨论。

https://github.com/angular/angular.io/issues/2663

Alex J的答案很好,但截至2017年7月它已不再适用于当前的Angular 4。

这个plunker链接将演示如何使用共享服务和可观察的兄弟姐妹之间进行通信。

https://embed.plnkr.co/P8xCEwSKgcOg07pwDrlO/

答案 4 :(得分:4)

在某些情况下,指令可以用于“连接”组件。事实上,连接的东西甚至不需要是完整的组件,有时它更轻巧,实际上更简单,如果它们不是。

例如,我有一个node_bar_rel: id [int], id_node [int], id_bar [int]组件(包装Youtube API),我想要一些控制器按钮。按钮不属于我的主要组件的唯一原因是它们位于DOM的其他位置。

在这种情况下,它实际上只是一个'扩展'组件,只能与'父'组件一起使用。我说'父母',但在DOM中它是一个兄弟姐妹 - 所以你可以这样称呼它。

就像我说它甚至不需要是一个完整的组件,在我的情况下,它只是一个Youtube Player(但它可能是一个组件)。

<button>

@Directive({ selector: '[ytPlayerPlayButton]' }) export class YoutubePlayerPlayButtonDirective { _player: YoutubePlayerComponent; @Input('ytPlayerVideo') private set player(value: YoutubePlayerComponent) { this._player = value; } @HostListener('click') click() { this._player.play(); } constructor(private elementRef: ElementRef) { // the button itself } } 的HTML中,ProductPage.component显然是包含Youtube API的组件。

youtube-player

该指令为我提供了所有内容,我不必在HTML中声明(click)事件。

因此该指令可以很好地连接到视频播放器,而不必让<youtube-player #technologyVideo videoId='NuU74nesR5A'></youtube-player> ... lots more DOM ... <button class="play-button" ytPlayerPlayButton [ytPlayerVideo]="technologyVideo">Play</button> 作为调解员。

这是我第一次真正做到这一点,所以还不确定它对于更复杂的情况可能具有多大的可扩展性。虽然我很高兴,但它让我的HTML变得简单,并且所有事情的责任都不同。

答案 5 :(得分:2)

您需要在组件之间设置父子关系。问题是您可能只是将子组件注入父组件的构造函数中并将其存储在局部变量中。 相反,您应该使用@ViewChild属性声明符在父组件中声明子组件。 这就是您的父组件的外观:

import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { ListComponent } from './list.component';
import { DetailComponent } from './detail.component';

@Component({
  selector: 'app-component',
  template: '<list-component></list-component><detail-component></detail-component>',
  directives: [ListComponent, DetailComponent]
})
class AppComponent implements AfterViewInit {
  @ViewChild(ListComponent) listComponent:ListComponent;
  @ViewChild(DetailComponent) detailComponent: DetailComponent;

  ngAfterViewInit() {
    // afther this point the children are set, so you can use them
    this.detailComponent.doSomething();
  }
}

https://angular.io/docs/ts/latest/api/core/index/ViewChild-var.html

https://angular.io/docs/ts/latest/cookbook/component-communication.html#parent-to-view-child

请注意,在调用ngAfterViewInit生命周期挂钩之后,子组件将不会在父组件的构造函数中可用。要捕获此钩子,只需在您的父类中实现AfterViewInit接口,就像使用OnInit一样。

但是,本博客说明中还有其他属性声明符: http://blog.mgechev.com/2016/01/23/angular2-viewchildren-contentchildren-difference-viewproviders/

答案 6 :(得分:2)

行为主体。我写了blog

import { BehaviorSubject } from 'rxjs/BehaviorSubject';
private noId = new BehaviorSubject<number>(0); 
  defaultId = this.noId.asObservable();

newId(urlId) {
 this.noId.next(urlId); 
 }

在此示例中,我声明了类型编号的noid行为主题。它也是一个可观察的。如果“发生了什么事情”,这将随着new(){}函数而改变。

因此,在兄弟的组件中,一个人将调用该函数,进行更改,另一个将受到该更改的影响,反之亦然。

例如,我从URL获取id并从行为主题更新noid。

public getId () {
  const id = +this.route.snapshot.paramMap.get('id'); 
  return id; 
}

ngOnInit(): void { 
 const id = +this.getId ();
 this.taskService.newId(id) 
}

从另一方面来说,我可以问这个ID是否是“我想要的”并在此之后做出选择,在我的情况下,如果我想要删除任务,并且该任务是当前的URL,它具有把我转到家里:

delete(task: Task): void { 
  //we save the id , cuz after the delete function, we  gonna lose it 
  const oldId = task.id; 
  this.taskService.deleteTask(task) 
      .subscribe(task => { //we call the defaultId function from task.service.
        this.taskService.defaultId //here we are subscribed to the urlId, which give us the id from the view task 
                 .subscribe(urlId => {
            this.urlId = urlId ;
                  if (oldId == urlId ) { 
                // Location.call('/home'); 
                this.router.navigate(['/home']); 
              } 
          }) 
    }) 
}

答案 7 :(得分:2)

简单实用的解释:here

在call.service.ts

import { Observable } from 'rxjs';
import { Subject } from 'rxjs/Subject';

@Injectable()
export class CallService {
 private subject = new Subject<any>();

 sendClickCall(message: string) {
    this.subject.next({ text: message });
 }

 getClickCall(): Observable<any> {
    return this.subject.asObservable();
 }
}

要调用的组件可观察到,以通知另一个组件单击了按钮

import { CallService } from "../../../services/call.service";

export class MarketplaceComponent implements OnInit, OnDestroy {
  constructor(public Util: CallService) {

  }

  buttonClickedToCallObservable() {
   this.Util.sendClickCall('Sending message to another comp that button is clicked');
  }
}

要在其他组件上单击按钮后要执行操作的组件

import { Subscription } from 'rxjs/Subscription';
import { CallService } from "../../../services/call.service";


ngOnInit() {

 this.subscription = this.Util.getClickCall().subscribe(message => {

 this.message = message;

 console.log('---button clicked at another component---');

 //call you action which need to execute in this component on button clicked

 });

}

import { Subscription } from 'rxjs/Subscription';
import { CallService } from "../../../services/call.service";


ngOnInit() {

 this.subscription = this.Util.getClickCall().subscribe(message => {

 this.message = message;

 console.log('---button clicked at another component---');

 //call you action which need to execute in this component on button clicked

});

}

通过阅读以下内容,我对组件通信的理解很清楚:http://musttoknow.com/angular-4-angular-5-communicate-two-components-using-observable-subject/

答案 8 :(得分:1)

<强> This is not what you exactly want but for sure will help you out

我很惊讶没有关于组件通信的更多信息 &lt; =&gt; 的 consider this tutorial by angualr2

对于兄弟组件通信,我建议使用sharedService。还有其他选择。

import {Component,bind} from 'angular2/core';
import {bootstrap} from 'angular2/platform/browser';
import {HTTP_PROVIDERS} from 'angular2/http';
import {NameService} from 'src/nameService';


import {TheContent} from 'src/content';
import {Navbar} from 'src/nav';


@Component({
  selector: 'app',
  directives: [TheContent,Navbar],
  providers: [NameService],
  template: '<navbar></navbar><thecontent></thecontent>'
})


export class App {
  constructor() {
    console.log('App started');
  }
}

bootstrap(App,[]);

请参阅顶部的链接以获取更多代码。

编辑:这是一个非常小的演示。您已经提到过您已尝试使用sharedService。所以请 consider this tutorial by angualr2 了解更多信息。

答案 9 :(得分:1)

共享服务是解决此问题的好方法。如果您也想存储一些活动信息,则可以将“共享服务”添加到主模块(app.module)提供程序列表中。

@NgModule({
    imports: [
        ...
    ],
    bootstrap: [
        AppComponent
    ],
    declarations: [
        AppComponent,
    ],
    providers: [
        SharedService,
        ...
    ]
});

然后您可以直接将其提供给组件,

constructor(private sharedService: SharedService)

使用共享服务,您可以使用功能,也可以创建主题以一次更新多个位置。

@Injectable()
export class FolderTagService {
    public clickedItemInformation: Subject<string> = new Subject(); 
}

在列表组件中,您可以发布单击的项目信息,

this.sharedService.clikedItemInformation.next("something");

然后您可以在详细信息组件中获取此信息:

this.sharedService.clikedItemInformation.subscribe((information) => {
    // do something
});

很显然,列出组件共享的数据可以是任何数据。希望这会有所帮助。

答案 10 :(得分:0)

我一直通过绑定将setter方法从父节点传递给它的一个子节点,用子组件中的数据调用该方法,这意味着父组件已更新,然后可以用它更新其第二个子组件新数据。它确实需要绑定这个&#39;或者使用箭头功能。

这样做的好处是,孩子们不会因为不需要特定的共享服务而相互耦合。

我不完全确定这是最佳做法,听听别人对此的看法会很有趣。

答案 11 :(得分:0)

我还喜欢通过输入和输出通过父组件在2个兄弟姐妹之间进行通信。它比使用普通服务更好地处理OnPush更改通知。 或者只是使用NgRx商店。

示例。

@Component({
    selector: 'parent',
    template: `<div><notes-grid 
            [Notes]="(NotesList$ | async)"
            (selectedNote)="ReceiveSelectedNote($event)"
        </notes-grid>
        <note-edit 
            [gridSelectedNote]="(SelectedNote$ | async)"
        </note-edit></div>`,
    styleUrls: ['./parent.component.scss']
})
export class ParentComponent {

    // create empty observable
    NotesList$: Observable<Note[]> = of<Note[]>([]);
    SelectedNote$: Observable<Note> = of<Note>();

    //passed from note-grid for selected note to edit.
    ReceiveSelectedNote(selectedNote: Note) {
    if (selectedNote !== null) {
        // change value direct subscribers or async pipe subscribers will get new value.
        this.SelectedNote$ = of<Note>(selectedNote);
    }
    }
    //used in subscribe next() to http call response.  Left out all that code for brevity.  This just shows how observable is populated.
    onNextData(n: Note[]): void {
    // Assign to Obeservable direct subscribers or async pipe subscribers will get new value.
    this.NotesList$ = of<Note[]>(n.NoteList);  //json from server
    }
}

//child 1 sibling
@Component({
  selector: 'note-edit',
  templateUrl: './note-edit.component.html', // just a textarea for noteText and submit and cancel buttons.
  styleUrls: ['./note-edit.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class NoteEditComponent implements OnChanges {
  @Input() gridSelectedNote: Note;

    constructor() {
    }

// used to capture @Input changes for new gridSelectedNote input
ngOnChanges(changes: SimpleChanges) {
     if (changes.gridSelectedNote && changes.gridSelectedNote.currentValue !== null) {      
      this.noteText = changes.gridSelectedNote.currentValue.noteText;
      this.noteCreateDtm = changes.gridSelectedNote.currentValue.noteCreateDtm;
      this.noteAuthorName = changes.gridSelectedNote.currentValue.noteAuthorName;
      }
  }

}

//child 2 sibling

@Component({
    selector: 'notes-grid',
    templateUrl: './notes-grid.component.html',  //just an html table with notetext, author, date
    styleUrls: ['./notes-grid.component.scss'],
    changeDetection: ChangeDetectionStrategy.OnPush
})
export class NotesGridComponent {

// the not currently selected fromt eh grid.
    CurrentSelectedNoteData: Note;

    // list for grid
    @Input() Notes: Note[];

    // selected note of grid sent out to the parent to send to sibling.
    @Output() readonly selectedNote: EventEmitter<Note> = new EventEmitter<Note>();

    constructor() {
    }

    // use when you need to send out the selected note to note-edit via parent using output-> input .
    EmitSelectedNote(){
    this.selectedNote.emit(this.CurrentSelectedNoteData);
    }

}


// here just so you can see what it looks like.

export interface Note {
    noteText: string;
    noteCreateDtm: string;
    noteAuthorName: string;
}