react更新state方法有哪些

2022-11-09 18:02:29

react更新state方法有:1、通過key變化子元件,程式碼如「<Children key={this.state.key} a={this.state.a} b={this.state.b} />」;2、利用ref父元件呼叫子元件函數;3、通過父級給子級傳資料,子級只負責渲染。

前端(vue)入門到精通課程:進入學習
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API偵錯工具:

本教學操作環境:Windows7系統、react17.0.1版、Dell G3電腦。

react更新state方法有哪些?

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方法有哪些的詳細內容,更多請關注TW511.COM其它相關文章!