react跳转传值的实现方法:1、通过“history.push”或“NavLink”实现页面跳转;2、通过“this.props.history.push({pathname: 'login',query: {id: ...,name: ...}})this.props.history.push('modify')”实现传值即可。
本教程操作环境:Windows10系统、react18.0.0版、Dell G3电脑。
react跳转传值怎么实现?
react项目页面跳转/传值
- 引用 withRouter
- 导出组件时使用
import { withRouter } from 'react-router-dom'; class Header extends React.Component { } export default withRouter(Header);
import { NavLink } from "react-router-dom"; 1ebcf6594ee122d4a94c5cc4c6567b32修改密码adb9ac3aead1d3fba02ca688b8636d1b
this.props.history.push({ pathname: 'login', query: { id: 3231, name: 3231 }})this.props.history.push('modify')
this.props.match.query.id // 3231 this.props.match.params.name // 3231
父组件:
state = { collapsed: false,};render() { const { collapsed } = this.state; return ( 15471bd569792dd83fa4d9f3074d65b0 )}
子组件:
componentDidMount(){ // console.log(this.props) const { pathname } = this.props.location if( pathname ) { this.setState({ selectedKeys:this.props.location.pathname }) }}
console.log(this.props)
推荐学习:《react视频教程》
以上是react跳转传值怎么实现的详细内容。更多信息请关注PHP中文网其他相关文章!