您好,登录后才能下订单哦!
这篇“React路由组件传参的方式有哪些”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“React路由组件传参的方式有哪些”文章吧。
路由组件时被Router组件使用的组件,this.props里面有三个参数,分别是history、match、location
可以接收到路由跳转传参,也可以进行编程式导航跳转
普通组件只有父传子的props值
作用:当匹配一个路由组件时,其他组件不会被使用,可以加入404页面,给用户进行友好提示,提升用户体验
方式一:url的query方式传参,在App组件中
//传值 <Link to='/home?name=张三&age=18'>主页面</Link> //接收 <Route path='/home' component={home}></Route>
如果我们要打印我们接收到的值,有两种方式
第一种,在home组件中,创建一个生命周期,然后进行普通的切割、添加、打印即可
componentDidMount(){ console.log(this.props.history.location.search); let a=this.props.history.location.search.slice(1) let b=a.split('&') console.log(b); let obj={} b.forEach((item)=>{ item.split('=') obj[item.split('=')[0]]=item.split('=')[1] }) console.log(obj); }
第二种:使用querystring,在使用之前,需要下载引入
下载:npm i querystring -D
componentDidMount(){ let a=this.props.history.location.search.slice(1) console.log(querystring.parse(a)); }
在页面使用:querystring.parse(url形式携带的字符串)
方式二:url的params传参
//传值 <Link to='/login/zhangsan/18'>登录</Link> //接收 <Route path='/login/:name/:age' component={login}></Route>
注意:传入的参数跟值得长度必须一致,否则会报错
打印:
componentDidMount(){ // console.log(this.props); console.log(this.props.match.params); }
方式三:
//传值 <Link to={{pathname:'/zhuce',user:{name:'张三',age:19}}}>注册页面</Link> //接收 <Route path='/zhuce' component={zhuce}></Route>
打印:
componentDidMount(){ console.log(this.props.location.user); }
我们定义一个按钮,在按钮中给他一个点击事件,在事件函数中我们进行路由得跳转
home组件
export default class home extends Component { onchange=()=>{ this.props.history.push('/home/?name=张三&age=19') } render() { return ( <div> <button onClick={()=>{this.onchange()}}>点击跳转到home页</button> </div> ) } }
在home 组件中,this.props.history.push后面跟上边三种传参方式
app组件
<Link to='/home?name=张三&age=18'>主页面</Link>
跟我们vue中的redirect使用方法相似,用来路由跳转
<Redirect to='/'></Redirect>
以上就是关于“React路由组件传参的方式有哪些”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。