We use a HTTP client in Angular 6 to get a page of data. When multiple requests sent out too quick, for example, user entering filter characters, the page requests keep sending out quickly. the results back is out of order easily. Suppose the HTTP client called three times, the final results coming back may be is for 1st service request.
How to solve this issue? Thanks in advance.