我有一个带有类别选项卡的菜单,点击后会显示以下功能。
this._customerservice.GetCustomersByFilter(this.FilterOptions) //Get Customers by Page Number and CategoryId
.subscribe(res => {
if (this.customersArray.paginatedCustomers.length != 0) {
res.paginatedCustomers.forEach(element => {
this.customersArray.paginatedCustomers.push(element);
});
}
else
this.customersArray = res;
if (infiniteScroll != null)
infiniteScroll.complete();
this.customersView = this.customersArray;
}
一旦他点击一个类别并且服务调用仍在加载,如果他点击第二个类别,我想停止这个返回结果的功能,因为它为错误的类别产生了错误的输出。