91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

react怎么更新state

發布時間:2022-11-09 15:48:19 來源:億速云 閱讀:139 作者:iii 欄目:web開發

本文小編為大家詳細介紹“react怎么更新state”,內容詳細,步驟清晰,細節處理妥當,希望這篇“react怎么更新state”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

react更新state方法有:1、通過key變化子組件,代碼如“<Children key={this.state.key} a={this.state.a} b={this.state.b} />”;2、利用ref父組件調用子組件函數;3、通過父級給子級傳數據,子級只負責渲染。

react中父級props改變,更新子級state的多種方法

子組件:

class Children extends Component {
  constructor(props) {
     super(props);
     this.state = {
       a: this.props.a,
       b: this.props.b,
       treeData: '',
       targets: '',
     }
    }
  componentDidMount() {
   const { a, b } = this.state
   const data = {a,b}
   fetch('/Url', {
     data
   }).then(res => {
   if (res.code === 0) {
     this.setState({
     treeData: res.a,
     targets: res.b,
  })
  } else {
   message.error(res.errmsg)
  }
  })
  }
 test(item1, item2) {
   const data = { item1, item2 }
   fetch('/Url', {data}).then(res => {
     if (res.code === 0) {
       this.setState({
         treeData: res.a,
         targets: res.b,
       })
     } else {
       message.error(res.errmsg)
     }
   })
 }
}
export default Children

方法一:巧用key

<Children key={this.state.key} a={this.state.a} b={this.state.b} /> //父組件調用子組件

這種方法是通過key變化子組件會重新實例化 (react的key變化會銷毀組件在重新實例化組件)

方法二:利用ref父組件調用子組件函數(不符合react設計規范,但可以算一個逃生出口嘻嘻~)

class father extends Component {
    constructer(props) {
      super(props);
      this.state={
       a: '1',
       b: '2',
      }
      this.myRef
      this.test = this.test.bind(this)
    }
   change() {
     const { a,b } = this.state
     console.log(this.myRef.test(a,b)) // 直接調用實例化后的Children組件對象里函數
    }
render() {
 <Children wrappedComponentRef={(inst) => { this.myRef = inst } } ref={(inst) => { this.myRef = inst } } />  
 <button onClick={this.test}>點擊</button>
}
}

注:wrappedComponentRef是react-router v4中用來解決高階組件無法正確獲取到ref( 非高階組件要去掉哦)

方法三:父級給子級傳數據,子級只負責渲染(最符合react設計觀念)推薦!!

父組件:

class father extends Component {
    constructer(props) {
      super(props);
      this.state={
       a:'1',
       b:'2',
       data:'',
      }
    }
  getcomposedata() {
    const { a, b } = this.state
    const data = { a, b }
    fetch('/Url', {data}).then(res => {
      if (res.code === 0) {
        this.setState({
          data:res.data
        })
      } else {
        message.error(res.errmsg)
      }
    })
  }
render() {
 <Children data={this.state.data}} />  
}
}

子組件:

  componentWillReceiveProps(nextProps) {
    const { data } = this.state
    const newdata = nextProps.data.toString()
    if (data.toString() !== newdata) {
      this.setState({
        data: nextProps.data,
      })
    }
  }

注:react的componentWillReceiveProps周期是存在期用改變的props來判斷更新自身state

讀到這里,這篇“react怎么更新state”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

墨江| 宜阳县| 宁陵县| 金昌市| 清远市| 乌拉特中旗| 凤阳县| 精河县| 福海县| 无棣县| 东乌珠穆沁旗| 苍山县| 阿克苏市| 太仆寺旗| 馆陶县| 福贡县| 深州市| 昆明市| 永安市| 天全县| 调兵山市| 澄城县| 曲阳县| 望江县| 枝江市| 丹巴县| 威信县| 关岭| 福海县| 石楼县| 五原县| 太谷县| 二手房| 尖扎县| 香格里拉县| 营口市| 新绛县| 兰坪| 那曲县| 界首市| 介休市|