Back-end rendering (SSR, server-side rendering)
Backend rendering HTML, the browser will directly receive after server computing is presented to the user's final HTML string, here is the server parsed stored in the server to complete the template file, in this case, only the HTML parsing, and by operating the system to provide the control display shows the contents of the system call HTML represented by the image on the display show to the user.
Front-end rendering (SPA, single page application)
Front-end rendering means that the browser will get some information from the back end, which may be applicable to the template file of the topic named angularjs, or data wrapped in various data exchange formats such as JSON, or even direct and legal HTML strings. None of this is important. The important thing is that it is up to the browser to arrange the information into the final readable HTML string, and then display it after the HTML string is formed.



