這篇文章將為大家詳細講解有關使用react怎么在父組件與子組件之間值傳遞,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
子組件
import React, { Component } from 'react' export default class Item extends Component { constructor(props) { super(props) this.state = { prices: 0 } } handleChange(){ const prices =800; this.setState({ prices: price }) //用傳過來的changePrice屬性(props),是個函數,呼叫它把price交給父組件中的函數去處理 this.props.changePrice(price) } render() { const { prices } = this.state; return ( <div> <div onChange={this.handleChange.bind(this)}> </div> <p>{prices}</p> </div> ) } }
父組件
import React, { Component } from 'react'; import Item from './Item' class App extends Component { constructor(props) { super(props) this.state = {price: 0} } //給子組件用來傳price用的方法 changePrice(price){ this.setState({price: price}) } render() { return ( <div> <Item changePrice={this.changePrice.bind(this)}/> <p>{this.state.price}</p> </div> ); } } export default App;
關于使用react怎么在父組件與子組件之間值傳遞就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。