亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

阿拉尔市| 安康市| 西丰县| 独山县| 克山县| 来安县| 新昌县| 桐梓县| 乌兰察布市| 旬邑县| 徐汇区| 若尔盖县| 杭锦后旗| 晋宁县| 鄂托克旗| 周口市| 古浪县| 黄浦区| 洛隆县| 资讯| 轮台县| 连山| 彰化市| 宁安市| 龙井市| 财经| 城固县| 西安市| 内乡县| 济南市| 高淳县| SHOW| 宣威市| 临海市| 和硕县| 雅江县| 安徽省| 察雅县| 普兰店市| 米易县| 汾西县|