本文小編為大家詳細(xì)介紹“react怎么更新state”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“react怎么更新state”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、虛擬空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、北海街道網(wǎng)站維護(hù)、網(wǎng)站推廣。
react更新state方法有:1、通過(guò)key變化子組件,代碼如“
”;2、利用ref父組件調(diào)用子組件函數(shù);3、通過(guò)父級(jí)給子級(jí)傳數(shù)據(jù),子級(jí)只負(fù)責(zé)渲染。
react中父級(jí)props改變,更新子級(jí)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
這種方法是通過(guò)key變化子組件會(huì)重新實(shí)例化 (react的key變化會(huì)銷毀組件在重新實(shí)例化組件)
方法二:利用ref父組件調(diào)用子組件函數(shù)(不符合react設(shè)計(jì)規(guī)范,但可以算一個(gè)逃生出口嘻嘻~)
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)) // 直接調(diào)用實(shí)例化后的Children組件對(duì)象里函數(shù)
}
render() {
注:wrappedComponentRef是react-router v4中用來(lái)解決高階組件無(wú)法正確獲取到ref( 非高階組件要去掉哦)
方法三:父級(jí)給子級(jí)傳數(shù)據(jù),子級(jí)只負(fù)責(zé)渲染(最符合react設(shè)計(jì)觀念)推薦!!
父組件:
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() {
子組件:
componentWillReceiveProps(nextProps) {
const { data } = this.state
const newdata = nextProps.data.toString()
if (data.toString() !== newdata) {
this.setState({
data: nextProps.data,
})
}
}
注:react的componentWillReceiveProps周期是存在期用改變的props來(lái)判斷更新自身state
讀到這里,這篇“react怎么更新state”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。