您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“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”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。