How does QQ.com do not have data echo but can render the data?

clipboard.png


take a look. It should be using techniques such as SSR rendering


Don't filter XHR. Choose ALL and you will have it. If the home page does not change much, it is generally rendered on the server


all resources are requests, and server rendering returns html this kind of resource. If you select doc , you will return the entire page, which is tantamount to returning a static page. Of course, there is no need to make a ajax request if there is no data interaction with the background when the page is loaded. Not all requests for data are made at the same time.

Menu