如何在Angular 2中的订阅期间将数组的值传递给另一个空数组。我想在Angular 2中创建无限滚动条。我有一个包含10个值的数组。在无限卷轴中,我想一次又一次地重复这10个值。以下是组件中的代码:
array =[];
eNews = [];
getNewsList(){
this._newsService.getData()
.subscribe(resNewsData => this.eNews = resNewsData);
}
我想将电子新闻推向阵列。
您可以在数组上使用.concat
运算符
this.eNews = this.eNews.concat(resNewsData);