Posted in Javascript onSeptember 05, 2020
最近,在做电商项目,项目中需要实现:点击编辑按钮,跳转页面完成添加地址,修改地址功能。
使用到angular传参,简单做一总结:
1,发送界面ts
//编辑地址 EditorAddress(item) { console.log("选中的地址"); console.log(item); this.router.navigate(['/editor-address'], { queryParams: item }) }
2,接收界面ts
public personName:string="" public phone:string="" public areaInfo:string="" public detailedAddress:string="" public isDefault:number ngOnInit() { //编辑地址 this.activatedRoute.queryParams.subscribe((res) => { this.personName =res.personName, this.phone=res.phone, this.areaInfo=res.areaInfo, this.detailedAddress=res.detailedAddress, this.isDefault=res.isDefault//1 // }) }
3,效果
到此这篇关于Angular+Ionic使用queryParams实现跳转页传值的文章就介绍到这了,更多相关Angular跳转页传值内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!
Angular+Ionic使用queryParams实现跳转页传值的方法
- Author -
会做梦的辣条鱼声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@