溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

React路由組件傳參的方式有哪些

發(fā)布時間:2022-08-15 16:23:38 來源:億速云 閱讀:161 作者:iii 欄目:開發(fā)技術(shù)

這篇“React路由組件傳參的方式有哪些”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“React路由組件傳參的方式有哪些”文章吧。

路由組件和組件的區(qū)別

路由組件時被Router組件使用的組件,this.props里面有三個參數(shù),分別是history、match、location

可以接收到路由跳轉(zhuǎn)傳參,也可以進行編程式導(dǎo)航跳轉(zhuǎn)

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

Swith內(nèi)置組件使用

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

react 路由傳參

方式一:url的query方式傳參,在App組件中

//傳值
<Link to='/home?name=張三&age=18'>主頁面</Link>
//接收
<Route path='/home' component={home}></Route>

如果我們要打印我們接收到的值,有兩種方式

第一種,在home組件中,創(chuàng)建一個生命周期,然后進行普通的切割、添加、打印即可

    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>

注意:傳入的參數(shù)跟值得長度必須一致,否則會報錯

打?。?/p>

    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>

打?。?/p>

componentDidMount(){
        console.log(this.props.location.user);
    }

編程式導(dǎo)航

我們定義一個按鈕,在按鈕中給他一個點擊事件,在事件函數(shù)中我們進行路由得跳轉(zhuǎn)

home組件

export default class home extends Component {
    onchange=()=>{
        this.props.history.push('/home/?name=張三&age=19')
      }
  render() {
    return (
      <div>
        <button onClick={()=>{this.onchange()}}>點擊跳轉(zhuǎn)到home頁</button>
      </div>
    )
  }
}

在home 組件中,this.props.history.push后面跟上邊三種傳參方式

app組件

<Link to='/home?name=張三&age=18'>主頁面</Link>

Redirect重定向

跟我們vue中的redirect使用方法相似,用來路由跳轉(zhuǎn)

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

以上就是關(guān)于“React路由組件傳參的方式有哪些”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI