利用angular怎么实现不同的组件间传值与通信-mile米乐体育

这篇文章将为大家详细讲解有关利用angular怎么实现不同的组件间传值与通信,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

父子组件间参数与通讯方法

使用事件通信(eventemitter,@output):

场景:可以在父子组件之间进行通信,一般使用在子组件传递消息给父组件;

步骤:

  1. 子组件创建事件eventemitter对象,使用@output公开出去;

  2. 父组件监听子组件@output出来的方法,然后处理事件。

代码:

//child组件 @component({ selector:'app-child', template:'', styles:[``] }) exportclassappchildcomponentimplementsoninit{ @output()onvoted:eventemitter=neweventemitter(); ngoninit():void{ this.onvoted.emit(1); } } //parent组件 @component({ selector:'app-parent', template:`  `, styles:[``] }) exportclassappparentcomponentimplementsoninit{ ngoninit():void{ thrownewerror('methodnotimplemented.'); } onlisten(data:any):void{ console.log('tag' '---------->>>' data); } }

使用@viewchild和@viewchildren:

场景:一般用于父组件给子组件传递信息,或者父组件调用子组件的方法;

步骤:

  1. 父组件里面使用子组件;

  2. 父组件里面使用@viewchild获得子组件对象。

  3. 父组件使用子组件对象操控子组件;(传递信息或者调用方法)。

代码:

//子组件 @component({ selector:'app-child', template:'', styles:[``] }) exportclassappchildcomponent2implementsoninit{ data=1; ngoninit():void{ } getdata():void{ console.log('tag' '---------->>>' 111); } } //父组件 @component({ selector:'app-parent2', template:`  `, styles:[``] }) exportclassappparentcomponent2implementsoninit{ @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

  routerlink=["/exampledetail",{queryparams:object}]  routerlink=["/exampledetail",{queryparams:'id':'1','name':'yxman'}];

router.navigate

this.router.navigate(['/exampledetail',id]); this.router.navigate(['/exampledetail'],{queryparams:{'name':'yxman'}});

router.navigatebyurl

this.router.navigateby; this.router.navigateby;

传参方传参之后,接收方2种接收方式如下:

snapshot

import{activateroute}from'@angular/router'; publicdata:any; exportclassexampledetailcomponentimplementsoninit{ constructor(publicroute:activateroute){}; ngoninit(){ this.data=this.route.snapshot.params['id']; }; }

queryparams

import{activateroute}from'@angular/router'; exportclassexampledetailcomponentimplementsoninit{ publicdata:any; constructor(publicactiveroute:activateroute){}; ngoninit(){ this.activeroute.queryparams.subscribe(params=>{ this.data=params['name']; }); };

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

场景:需要通信的两个组件不是父子组件或者不是相邻组件;当然,也可以是任意组件。

步骤:

  1. 新建一个服务,组件a和组件b同时注入该服务;

  2. 组件a从服务获得数据,或者想服务传输数据

  3. 组件b从服务获得数据,或者想服务传输数据。

代码:

//组件a @component({ selector:'app-a', template:'', styles:[``] }) exportclassappcomponentaimplementsoninit{ constructor(privatemessage:messageservice){ } ngoninit():void{ //组件a发送消息3 this.message.sendmessage(3); constb=this.message.getmessage();//组件a接收消息; } } //组件b @component({ selector:'app-b', template:`  `, styles:[``] }) exportclassappcomponentbimplementsoninit{ constructor(privatemessage:messageservice){ } ngoninit():void{ //组件b获得消息 consta=this.message.getmessage(); this.message.sendmessage(5);//组件b发送消息 } }

消息服务模块

场景:这里涉及到一个项目,里面需要实现的是所有组件之间都有可能通信,或者是一个组件需要给几个组件通信,且不可通过路由进行传参。

设计方式:

  1. 使用rxjs,定义一个服务模块messageservice,所有的信息都注册该服务;

  2. 需要发消息的地方,调用该服务的方法;

  3. 需要接受信息的地方使用,调用接受信息的方法,获得一个subscription对象,然后监听信息;

  4. 当然,在每一个组件destory的时候,需要

this.subscription.unsubscribe();

代码:

//消息中专服务 @injectable() exportclassmessageservice{ privatesubject=newsubject(); /** *content模块里面进行信息传输,类似广播 *@paramtype发送的信息类型 *1-你的信息 *2-你的信息 *3-你的信息 *4-你的信息 *5-你的信息 */ sendmessage(type:number){ console.log('tag' '---------->>>' type); this.subject.next({type:type}); } /** *清理消息 */ clearmessage(){ this.subject.next(); } /** *获得消息 *@returns{observable}返回消息监听 */ getmessage():observable{ returnthis.subject.asobservable(); } } //使用该服务的地方,需要注册messageservice服务; constructor(privatemessage:messageservice){ } //消息接受的地方; publicsubscription:subscription; ngafterviewinit():void{ this.subscription=this.message.getmessage().subscribe(msg=>{ //根据msg,来处理你的业务逻辑。 }) }  //组件生命周期结束的时候,记得注销一下,不然会卡; ngondestroy():void{ this.subscription.unsubscribe(); }  //调用该服务的方法,发送信息; send():void{ this.message.sendmessage(‘我发消息了,你们接受下');//发送信息消息 }

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

关于利用angular怎么实现不同的组件间传值与通信就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

展开全文
内容来源于互联网和用户投稿,文章中一旦含有米乐app官网登录的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系米乐app官网登录删除

最新文章

网站地图