我需要在页面上添加寻呼机。数据太大,所以我想在第一个寻呼机上显示它的显示50数据(在url上传递偏移量0和限制50),然后在下一个它将传递偏移量50来限制100。
getClaims() {
if(this.userFilter.company_id){
this.url = 'http://url.com/get_company_employee.php?
offset=0&limit=50&company_id='+this.userFilter.company_id;
}
else{
this.url = 'http://ur.com/get_company_employee.php?offset=0&limit=10';
}
this.clientData = this.httpClient.get<any>(this.url,{responseType: 'json'}).
subscribe(data => {
console.log(data);
this.data = data.records;
});
};