美文网首页
自己总结的Angular2组建通信

自己总结的Angular2组建通信

作者: 九二言 | 来源:发表于2017-11-04 14:16 被阅读10次

组件之间的通信

这里简单的记录自己在angular2中,使用组件通信的一些方法。方便自己以后的使用。

一、组件之间通信的方式

1. 使用事件通信(EventEmitter,@Output):

  • 场景:可以在父子组件之间进行通信,一般使用在子组件传递消息给父组件;
  • 步骤:
  1. 子组件创建事件EventEmitter对象,使用@output公开出去;
  2. 父组件监听子组件@output出来的方法,然后处理事件。
  • 代码:
          // 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);
             }
           }

ps:很讨厌贴代码,太占空间了;

2.使用@ViewChild和@ViewChildren:

  • 场景:一般用于父组件给子组件传递信息,或者父组件调用子组件的方法;
  • 步骤:
  1. 父组件里面使用子组件;
  2. 父组件里面使用@ViewChild获得子组件对象。
  3. 父组件使用子组件对象操控子组件;(传递信息或者调用方法)。
  • 代码:
 // 子组件
   @Component({
     selector: 'app-child2',
     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);// 父组件获得子组件属性
         }
       }

3.使用服务Service进行通信,即:两个组件同时注入某个服务:

  • 场景:需要通信的两个组件不是父子组件或者不是相邻组件;当然,也可以是任意组件。
  • 步骤:
    1. 新建一个服务,组件A和组件B同时注入该服务;
    2. 组件A从服务获得数据,或者想服务传输数据;
    3. 组件B从服务获得数据,或者想服务传输数据。
  • 代码:
       // 组件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. 场景:我涉及到一个项目,里面需要实现的是所有组件之间都有可能通信,或者是一个组件需要给几个组件通信。
  2. 设计方式:
  3. 使用RxJs,定义一个服务模块MessageService,所有的信息都注册该服务;
  4. 需要发消息的地方,调用该服务的方法;
  5. 需要接受信息的地方使用,调用接受信息的方法,获得一个Subscription对象,然后监听信息;
  6. 当然,在每一个组件Destory的时候,需要this.subscription.unsubscribe();
  7. 代码:
       // 消息中专服务
       @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});
         }
         /**
          * 发送图片信息
          * @param src:图片地址
          */
         sendImages(src: string) {
           console.log('AG1' + '---------->>>' + src)
           this.subject.next({url: src});
         }
          /**
          * 清理消息
          */
         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.sendImages('www.baidu.com'); // 发送图片地址
            this.message.sendMessage(2);  // 发送信息消息
         }

总结:这里的MessageService,就相当于使用广播机制,在所有的组件之间传递信息;不管是数字,字符串,还是对象都是可以传递的,而且这里的传播速度也是很快的。

相关文章

  • 自己总结的Angular2组建通信

    组件之间的通信 这里简单的记录自己在angular2中,使用组件通信的一些方法。方便自己以后的使用。 一、组件之间...

  • Angular2 轮播组建 swiper

    https://www.npmjs.com/package/angular2-useful-swiper

  • vue组建父子通信

    父-->子(父向子传递数据通过props) 父组件代码 子组件代码 子-->父(通过$emit) this.$em...

  • vue组建父子多层通信

    父-->子 第一层通过自定义属性传值,之后通过v-bind=""$attrs"传递给子级 子-->父 第一层通...

  • vue组建非父子通信

    子-->子 (可以通过使用一个空的Vue实例作为中央事件总线,也可以使用app实例) 使用app实例,main.j...

  • 初识Angular2的组件通信

    Angular2中免不了进行父子组件的通信,现在就稍微的了解一下父组件怎么给子组件传值,首先,通过Angular-...

  • vue组件通信

    1.组建通讯---父子组件通讯 父子通信通过props属性进行传值 父组件 子组件 1.组建通讯---子父组件通讯...

  • 3.5 使用 Angular2 框架

    3.5 使用 Angular2 框架 问题一:如何接入Angular2 框架? 由于 Angular2 项目中采用...

  • Vue组建通信的几种方法

    组件通信一 —— props和$emit props和$emit 父组件 向 子组件 传递数据 用 props 子...

  • Angular2 的 View Encapsulation(样式

    Angular2 的 View Encapsulation(样式封装) angular2 版本:2.4.8, 测试...

网友评论

      本文标题:自己总结的Angular2组建通信

      本文链接:https://www.haomeiwen.com/subject/nyifmxtx.html