1
最新の4レコードを表示したいが、すべてのdレコードを表示する。最新の4レコードをangular2に表示したい
public moderlist=[];
public notification1=[];
public createdon1=[];
public notificationlabel:any=[];
public createdonlabel:any=[];
getAllNotifications() {
debugger;
this.RedBenchService.getNotifications().subscribe(results => {
// this.moderlist
debugger;
this.moderlist= results;
for(let i=0; i<this.moderlist.length;i++) {
this.notification1.push(this.moderlist[i].Notification1);
this.createdon1.push(this.moderlist[i].CreatedOn);
}
this.notificationlabel=this.notification1;
this.createdonlabel=this.createdon1;
}, error => {
console.log(error);
});
}
私は次のようにangular2
は '私は= this.moderlist.length-4'操作できますか? – atayenel
no does not working –