角度切片对象数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了角度切片对象数组相关的知识,希望对你有一定的参考价值。
我试图通过从角度为5的另一个对象数组中获取一个对象数组。我通过一个服务从我的API后端获取所有产品。我将结果传递给了array类型的属性产品。我想从我得到的结果中检索一个部分。好吧可能无法用文字描述,所以lemme删除代码。
export class HomeComponent implements OnInit {
discountedproducts: Products[];
latestproducts: Products[];
cheapestdeals: Products[];
randomproducts: Products[];
constructor(private productservice: ProductService) {
}
ngOnInit() {
this.productservice.getProductsBydiscount()
.subscribe(res => this.discountedproducts = res);
this.productservice.getProductsByNewest()
.subscribe(res => this.latestproducts = res);
this.productservice.getProductsByPrice()
.subscribe(res => this.cheapestdeals = res);
this.productservice.getProductsByRandom()
.subscribe(res => this.randomproducts = res);
}
}
如果我做的事情
let slicedarray = latestproducts.slice(0, 3);
在构造函数中,当我尝试使用ngFor循环显示它时,它不会输出任何内容。我怎么能做得更好?
答案
你应该在回调.subscribe
时这样做,否则你需要让latestproducts
成为一个主题,然后订阅它。
this.productservice.getProductsByNewest()
.subscribe(res => {
this.latestproducts = res;
this.slicedArray = res.slice();
}
);
然后在slicedArray
上做ngFor。
以上是关于角度切片对象数组的主要内容,如果未能解决你的问题,请参考以下文章