首页 > 其他 > 详细

angular4 开发记录

时间:2017-07-10 23:22:56      阅读:325      评论:0      收藏:0      [点我收藏+]

1,传值问题

page setValue:  [routerLink]="[‘/product-details‘, product.id]">  

ts     seValue:    this.router.navigate([‘/product-details‘, id]);

ts     getVaue:    

constructor(private route: ActivatedRoute) {}
export class LoanDetailsPage implements OnInit, OnDestroy {
id: number;
private sub: any;
constructor(private route: ActivatedRoute) {}
ngOnInit() {
this.sub = this.route.params.subscribe(params => {
this.id = +params[‘id‘]; // (+) converts string ‘id‘ to a number

// In a real app: dispatch action to load the details here.
});
}
ngOnDestroy() {
this.sub.unsubscribe();
}
}

2,model

export class Gundam{
id:number;
name:String;
}

import {Gundam} form ‘../model/gundam‘;
export class GUNDAMS:Gundam[]=[]

angular4 开发记录

原文:http://www.cnblogs.com/jayruan/p/7147981.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!