Dynamic Routing
Dynamic routing is a powerful technique used in web development to handle navigation and rendering of pages based on changing parameters. Unlike traditional static routing, where pages are created and rendered component by component, dynamic routing allows for more flexible and efficient handling of complex app scenarios.
Thinking of e-commerce website that contain a lot of products like Shopee
When you see the product and you click to see the detail of that product. Do you think Shopee creating pages for each individual product? The answer is NO!
They use dynamic routing to help.
How to implement dynamic routing in React
Let's define new path call "product".
But for dynamic routing as you can see on example code above /product/:productId
/:productId
indicate that this part of the URL will be dynamic and represent the product's unique identifier.
Let's create the ProductPage.jsx
In the ProductPage.jsx
component, we can access the productId
parameter using the useParams
hook provided by react-router-dom
:
when we access URL localhost:5173/product/12332
the product number will dynamically change according to parameter productId in URL.
You will learn to use dynamic routing in advance so on with backend part.
No Comments