简体   繁体   中英

React-Router: Process of server request with Client-Side Routing?

I'm trying to understand to client-side routing works. But I still got a hard time to imagine how it works.

Let's say I've got some code like this (for example):

<Router>
    <Route path="/" component={Home} />
    <Route path="/users" component={Users} />
    <Route path="/widgets" component={Widgets} />
</Router>

How is the process?

Are the code of the components are all downloaded from the webserver at once when I request index.html? Then everything is managed with JavaScript on the client-side and no further requests are needed?

Let's say the URL ' example.com/#/users ' is called. As a consequence some part of the side is exchanged with the content of Users-component?

Or are the components requested when needed? Lazy loaded so to speak.

The process: The route you described imports all components handling routes, so they are all available in resulting bundle. Router matches path and renders these components accordingly (on / renders Home , on /users renders Users and so on). They are not lazy loaded because they are already included in route definition.

To have components lazy loaded you will have to use dynamic routing

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