首頁 > 軟體

React路由元件三種傳參方式分析講解

2022-08-15 14:01:59

路由元件和元件的區別

路由元件時被Router元件使用的元件,this.props裡面有三個引數,分別是history、match、location

可以接收到路由跳轉傳參,也可以進行程式設計式導航跳轉

普通元件只有父傳子的props值

Swith內建元件使用

作用:當匹配一個路由元件時,其他元件不會被使用,可以加入404頁面,給使用者進行友好提示,提升使用者體驗

react 路由傳參

方式一: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>

Redirect重定向

跟我們vue中的redirect使用方法相似,用來路由跳轉

<Redirect to='/'></Redirect>

到此這篇關於React路由元件三種傳參方式分析講解的文章就介紹到這了,更多相關React路由元件傳參內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com