中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

React傳遞參數的方式有哪些

發布時間:2021-06-29 12:01:17 來源:億速云 閱讀:139 作者:chen 欄目:開發技術

本篇內容介紹了“React傳遞參數的方式有哪些”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

父子組件之間傳遞參數

父組件往子組件傳值,直接用this.props就可以實現

在父組件中,給需要傳遞數據的子組件添加一個自定義屬性,在子組件中通過this.props就可以獲取到父組件傳遞過去的數據

// 父組件
 render() {
        return (
                // 使用自定義屬性傳遞需要傳遞的方法或者參數
                <ShopUi toson={this.state}></ShopUi>
            )
    } 

//子組件 
//通過this.props.toson就可以獲取到父組件傳遞過來的數據

如果還需要往孫組件傳遞那么在子組件通過自定義屬性繼續傳遞就行了

tograndson={this.props.toson}

孫組件通過this.props.tograndson獲取到數據

子組件給父組件傳值的話,需要在父組件設置接收函數和state,同時將函數名通過props傳遞給子組件

也就是給子組件傳入父組件的方法,在子組件進行調用

//孫子組件
export default class Grandson extends Component{
    render(){
        return (
            <div style={{border: "1px solid red",margin: "10px"}}>
        {this.props.name}:
                <select onChange={this.props.handleSelect}>
                    <option value="男">男</option>
                    <option value="女">女</option>
                </select>
            </div>
        )
    }
};
 
//子組件
export default class Child extends Component{
    render(){
        return (
            <div style={{border: "1px solid green",margin: "10px"}}>
                {this.props.name}:<input onChange={this.props.handleVal}/>
                <Grandson name="性別" handleSelect={this.props.handleSelect}/>
            </div>
        )
    }
};
 
//父組件
export default class Parent extends Component{
 
    constructor(props){
        super(props)
        this.state={
            username: '',
            sex: ''
        }   
    },
    handleVal(event){
        this.setState({username: event.target.value});
    },
    handleSelect(value) {
        this.setState({sex: event.target.value});
    },
    render(){
        return (
            <div style={{border: "1px solid #000",padding: "10px"}}>
                <div>用戶姓名:{this.state.username}</div>
                <div>用戶性別:{this.state.sex}</div>
                <Child name="姓名" handleVal={this.handleVal} handleSelect={this.handleSelect}/>
            </div>
        )
    }
}

前一段時間有人問過我這樣一個問題,constructor里面的super()是干嘛用的?

總結一下:

  如果要在子類的constructor里使用this,必須調用父類constructor,否則就拿不到this

  那么問題就來了,如何調用父類的constructor呢? 通過super()

  如果要在constructor里使用父組件傳遞過來的參數,必須在調用父組件super時,傳遞參數給父組件的constructor

  如果不在constructor里面使用this,或者參數,就不需要super ; 因為React以及幫你做了this,props的綁定

路由傳參

  安裝 npm install react-router-dom --save-dev

  定義路由(一般會放在外面)

 <HashRouter> 
    <Switch> 
        <Route exact path="/" component={Home}/> 
        <Route exact path="/detail" component={Detail}/> 
    </Switch> 
</HashRouter>

當頁面跳轉時

<li  onClick={el => this.props.history.push({
   pathname:'/detail',
      state:{id:3}
})}
>
</li>

接收    通過this.props.history.location可以獲取到傳遞過來的數據

路由傳參可能會有這個問題,就是只有在路由定義時掛載的組件中才會有props里面的location history match

路由上掛載的那個組件一般都是Container.js,一般我們會往下分出UI.js組件,在這里面進行點擊跳轉,UI組件props里沒有location history match

需要用到高階組件withRouter

 狀態提升

  將多個組件需要共享的狀態提升到離他們最近的那個公共父組件上,然后父組件通過props分發給子組件

context

  當某個組件在自己的context中保存了某個狀態,那個該組件下的所有子孫組件都可以訪問到這個狀態,不需要中間組件的傳遞,而這個組件的父組件是沒辦法訪問的

class Index extends Component {
  static childContextTypes = {
    themeColor: PropTypes.string
  }

  constructor () {
    super()
    this.state = { themeColor: 'red' }
  }

  getChildContext () {
    return { themeColor: this.state.themeColor }
  }

  render () {
    return (
      <div>
        <Header />
        <Main />
      </div>
    )
  }
}

通過getChildContext()將屬性傳遞給所有的子孫組件
提供 context 的組件必須提供 childContextTypes 作為 context 的聲明和驗證。 

class Title extends Component {
  static contextTypes = {
    themeColor: PropTypes.string
  }

  render () {
    return (
      <h2 style={{ color: this.context.themeColor }}>標題</h2>
    )
  }
}

子組件要獲取 context 里面的內容的話,就必須寫 contextTypes 來聲明和驗證你需要獲取的狀態的類型,它也是必寫的,如果你不寫就無法獲取 context 里面的狀態。
Title 想獲取 themeColor,它是一個字符串,我們就在 contextTypes 里面進行聲明。

引入redux

  redux為React提供可預測化的狀態管理機制

  redux將整個應用狀態存儲到store,store里保存著一個state狀態樹

  組件可以派發(dispatch)  行為 (action)  給store , 而不是直接通知其它組件

  其它組件可以通過訂閱store中的狀態state來刷新自己的視圖

“React傳遞參數的方式有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

马山县| 马公市| 荔波县| 宜丰县| 黄山市| 安新县| 新龙县| 博爱县| 丁青县| 惠安县| 称多县| 芜湖县| 潞西市| 新巴尔虎右旗| 杭州市| 丁青县| 平阳县| 海南省| 阿克陶县| 巴中市| 岳普湖县| 嘉荫县| 沁阳市| 汕尾市| 元谋县| 屏山县| 博罗县| 冷水江市| 万宁市| 衡山县| 虞城县| 博兴县| 五常市| 四川省| 磐安县| 庄河市| 新和县| 南澳县| 兴国县| 宜川县| 新沂市|