码迷,mamicode.com
首页 > 其他好文 > 详细

angular4 开发记录

时间:2017-07-10 23:37:44      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:for   cto   activate   orm   param   nts   dispatch   ber   ini   

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 开发记录

标签:for   cto   activate   orm   param   nts   dispatch   ber   ini   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!