I have an object with params i want to send.
So ngOnInit works, but what i need onScrollDown add to my params pageNumber + 1
everytime i scroll.
How can i do that ?
questionListParams = {
pageNumber: 1,
pageSize: 10,
};
ngOnInit() {
this.questionsHttpRequests.getQuestions(this.questionListParams).subscribe((response) => {
this.listOfQuestions = response;
});
}
onScrollDown() {
this.questionsHttpRequests.getQuestions((this.questionListParams)).subscribe((response) => {
this.listOfQuestions.push(...response);
});
}