Created
August 5, 2016 13:00
-
-
Save diem1/f838a1a0fa5d4cc6e80be24a3e04eba3 to your computer and use it in GitHub Desktop.
взяття параметрів з адресної строки в react-router
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ownerId = this.props.location.query.friend; // get params | |
ownerId = this.props.params.id; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Route path="/" component={App}> | |
<IndexRoute component={VKLoaderApp}/> | |
<Route path="audios:id" component={URLGetter}/> | |
</Route> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment