Question: How can I pass a prop or a single value, like an _id, through React-Router's Link component, and catch it at the endpoint?
This is what I mean: Let's say we are on page /a. The Link will take the user to /b. As such <Link to='/b'>
. Now, I need to pass an _id through the Link, from /a, to /b.
<Link to='/b' params={_id}>blah blah</Link>
The id I'm trying to pass is the property of an object in which the Link component is nested in.
I found this syntax params={}
in another StackOverflow thread. My code compiled without breaking, so that probably means it worked? However, I'm not sure about how to retrieve this passed value at the endpoint.
Any help will be greatly appreciated.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…