简体   繁体   中英

Partly server-side rendering

We know server-side rendering is good for SEO, especially for some blog app. But it will loose some good ux feature and not easy to debug comparing to the client-side rendering app.

I am wondering if there is way to apply the server-side rendering technique partly on the parts of a web app (like the blog part of the app), but using the client-side rendering for the rest. Kinda mix the server-side and client-side rendering together. Not sure this is what the isomorphic app means.

Isomorphic JavaScript(aka Universal JavaScript) can do that. You can make a web application that the first rendering comes from the server-side, and all activities after that are rendered by the client-side. Please be noted that the both sides share the same code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM