C
C
codymaverick2019-11-12 10:51:41
React
codymaverick, 2019-11-12 10:51:41

How to pass state through the Link component?

How to pass data through the react-router Link component to the component that is rendered along the path of this link?
Tried like this. Navigating the path /weather/detailed_weather renders the DetailedWeather component. You need to transfer data to it via Link.

<Link to={{
           pathname: '/weather/detailed_weather',
           state: {weather: true},
 }}>Link</Link>

Answer the question

In order to leave comments, you need to log in

2 answer(s)
R
Roman Alexandrovich, 2019-11-12
@codymaverick

this.props.history.push({
state: { detail: response.data }
})

https://stackoverflow.com/questions/44121069/how-t...

P
Pavel Didenko, 2019-11-12
@Dasslier

The Link component does not know which component will be rendered. Route knows which component is drawn along the path. Looking for a more logical way to pass props

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question