【发布时间】:2020-09-13 14:20:37
【问题描述】:
每次到达底部时,我都使用离子无限滚动来获取更多帖子
它工作正常,但它取代了不连接它的结果
这是代码
page=0
getAllposts() {
const url = `${this.API_URL}/getallposts?page=${this.page}`;
return this.http.get<any[]>(url);
}
getAllList() {
this.getAllposts().subscribe(data => {
this.showPosts = this.showPosts.concat(data) as PostModel[];
});
}
loadData(event) {
setTimeout(() => {
this.getAllList()
event.target.complete();
}, 2000);
this.page++
}
【问题讨论】:
标签: angular typescript ionic-framework