1.params
优势 : 刷新地址栏,参数依然存在
缺点:只能传字符串,并且,如果传的值太多的话,url会变得长而丑陋。
传参
import { Link, Route, Switch } from 'react-router-dom'
<Link key={listObj.id}
to={`/home/home_news/detail/${listObj.id}/${listObj.content}/${listObj.age}`}
>{listObj.content}</Link>
声明接收params参数
<Route path='/home/home_news/detail/:name/:count/:age' component={home_content}/>
读取参数
let { age, name, count } = this.props.match.params
2.query
优势:传参优雅,传递参数可传对象;
缺点:刷新地址栏,参数丢失
<Route path='/query' component={Query}/>
<Link to={{ path : ' /query' , query : { name : 'sunny' }}}>
this.props.history.push({pathname:"/query",query: { name : 'sunny' }});
读取参数用: this.props.location.query.name
- state
<Link to={{ path : ' /sort ' , state : { name : 'sunny' }}}>
this.props.history.push({pathname:"/sort ",state : { name : 'sunny' }});
读取参数用: this.props.location.query.state
4.search
优缺点同params
<Link key={listObj.id}
to={`/home/home_news/detail/?id=${listObj.id}&title=${listObj.content}`}
>{listObj.content}</Link>
`
search接收
``
<Route path='/home/home_news/detail' component={home_content}/>
读取参数
import qs from 'querystring'
let { search } = this.props.location
let result = qs.parse(search.slice(1))
let { id, title } = result