gpt4 book ai didi

javascript - 如何重定向到另一个页面并在reactjs中使用props

转载 作者:太空宇宙 更新时间:2023-11-04 01:22:06 26 4
gpt4 key购买 nike

在 route 我设置了props:

<Route path="/getFilePage" exact component={GetFilePage} CourseName={props.CourseName} />

在主页中我编写了以下重定向代码:

return <Redirect to={{
pathname: '/getFilePage',
CourseName:"C++"
}}/>

GetFilePage 组件中,我在 componentDidMount console.log(this.props.location.CourseName) 中编写,但未定义

最佳答案

语法错误。尝试如下:

return <Redirect to={{
pathname: '/getFilePage',
state:{CourseName:"C++"}
}}/>

并采用如下所示的参数:

this.props.location.state.CourseName

关于javascript - 如何重定向到另一个页面并在reactjs中使用props,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58875192/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com