Answer the question
In order to leave comments, you need to log in
Is it possible to get data from Api without waiting for full download?
There must be only one request to the network.
The data should be displayed as it loads.
fetch('https://jsonplaceholder.typicode.com/todos')
.then(response => response.json())
.then(json => console.log(json))
Answer the question
In order to leave comments, you need to log in
If I understand correctly, then you need pagination. Give data from the backend page by page and display accordingly on the front, with the ability to go to the desired page.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question