⚠️ This lesson is retired and might contain outdated information.

Use URL Parameters with React Router v4

Joe Maddalone
InstructorJoe Maddalone
Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 2 years ago

URLs can be looked at as the gateway to our data, and carry a lot of information that we want to use as context so that the user can return to a particular resource or application state. One way to achieve this is through the use of URL parameters that include important data right in the URL of the route that gets matched in React Router v4.

[00:00] URL parameters are a method by which we can extract parameters from our URL at our routes. I've got a very simple route here, to/page. In our render method, we are returning an <h1> with the word Page. If I go to /page, we can see that in the browser.

[00:19] To convert this /page into a parameter called page, I'm simply going to add a colon right before that value. To get that out of our route, I'm going to use our match data, so I'll pass that into a render method. Then right here after page, I'm going to say match.params.page. I'm also going to say, "If we don't have that, I'm going to say Home."

[00:43] I'm going to save that, and we've got our param of page. If I go to something like /react, we can see our param of page equals react. If I go to our root URL, nothing is going to render right now. That's because at this point this page value, in order for this route to be a match, needs to be present.

[01:04] If I want to make that an optional parameter, I can simply append a question mark at the end of that parameter string. If I save this, we can see that our optional page parameter was not provided, and therefore we've rendered Home.

[01:19] We could expand on that and represent a subdirectory here, so I'm going to say /:subpage, and then in our JSX I'm going to break this out a little bit what subpage, and here we'll interpolate match.params.subpage. We'll save that.

[01:39] We're going to get nothing at this point because I didn't make subpage optional, so I'm going to go ahead and do that now. We've got our Home, since the page parameter wasn't provided. Subpage is null at this point because the subpage parameter wasn't provided.

[01:54] If I go to /react, we're going to get our page value. If I go to /react/router, we're going to get our page parameter of react and our subpage parameter of router.

[02:08] We're not limited to representing these as subdirectories only. What I'm going to do is I'm going to get rid of this middle forward slash. I'm going to replace it with a dash. Now our route is /page-subpage. I'll save that. We're not going to get anything right now, but if I change this path in our browser to /react-router, our page parameter is react and our subpage parameter is router.

Brian Schmitt
Brian Schmitt
~ 6 years ago

Unfortunately, it's not clear how to access match when referencing a component in the Route element. How does one get a reference to match in the more typical case like the one below?

<Route path="/somplace/:someParam" component={ SomeComponent } /> 

assuming SomeComponent is defined something like:

class SomeComponent extends Component {
   render() {
         // ... how to get the value of someParam here??
   }
}
Brian Schmitt
Brian Schmitt
~ 6 years ago

...turns out its on props

class SomeComponent extends Component {
    render() {
        return (<h1>{ this.props.match.params.someParam }</h1>);
    }
}
Mohammed Arif
Mohammed Arif
~ 5 years ago

Github project isn't working on both codesandbox as well as on local, getting below error:

Failed to compile.

Error in ./src/App.js
Module not found: ./lessons in /Users/arifmd/Dev/Playground/ReactJS/egghead-react-router-v4/src

 @ ./src/App.js 30:23-60

Chrome console output:

App.js:26 Uncaught Error: Cannot find module "./lessons"
    at webpackMissingModule (App.js:26)
    at App.js:26
    at Array.forEach (<anonymous>)
    at Object.<anonymous> (App.js:26)
    at __webpack_require__ (bootstrap cb8d2b82933d4ca7c326:555)
    at fn (bootstrap cb8d2b82933d4ca7c326:86)
    at Object.<anonymous> (index.js:3)
    at __webpack_require__ (bootstrap cb8d2b82933d4ca7c326:555)
    at fn (bootstrap cb8d2b82933d4ca7c326:86)
    at Object.<anonymous> (bootstrap cb8d2b82933d4ca7c326:578)
webpackMissingModule @ App.js:26
(anonymous) @ App.js:26
(anonymous) @ App.js:26
__webpack_require__ @ bootstrap cb8d2b82933d4ca7c326:555
fn @ bootstrap cb8d2b82933d4ca7c326:86
(anonymous) @ index.js:3
__webpack_require__ @ bootstrap cb8d2b82933d4ca7c326:555
fn @ bootstrap cb8d2b82933d4ca7c326:86
(anonymous) @ bootstrap cb8d2b82933d4ca7c326:578
__webpack_require__ @ bootstrap cb8d2b82933d4ca7c326:555
(anonymous) @ bootstrap cb8d2b82933d4ca7c326:578
(anonymous) @ bootstrap cb8d2b82933d4ca7c326:578
webpackHotDevClient.js:233 Error in ./src/App.js
Module not found: ./lessons in /Users/arifmd/Dev/Playground/ReactJS/egghead-react-router-v4/src

 @ ./src/App.js 30:23-60
Mohammed Arif
Mohammed Arif
~ 5 years ago

Would suggest, If we can directly have codesandbox embedded in to the lessons itself, rather providing Github URL.

Markdown supported.
Become a member to join the discussionEnroll Today