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

Angular官网例子错误的解决

时间:2020-03-04 09:56:11      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:解决   div   mmap   his   cts   this   http   例子   tps   

1.<div *ngFor="let product of products; index as productId">

解决策:<div *ngFor="let product of products; let index = productId">

 

2.this.route.paramMap.subscribe(params => { this.product = products[+params.get(‘productId‘)]; });

解决策:this.route.params.subscribe(params => {this.product = products[+params[‘productId‘]];});

Angular官网例子错误的解决

标签:解决   div   mmap   his   cts   this   http   例子   tps   

原文地址:https://www.cnblogs.com/wzhw2015/p/12407366.html

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