老师我这样传入函数好像也被合并了。
来源:7-12 setState何时会合并state
功不唐捐终入海
2020-07-02
handleClick=()=>{
this.setState(()=>{
return {
count: this.state.count + 1
}
})
this.setState(()=>{
return {
count: this.state.count + 1
}
})
this.setState(()=>{
return {
count: this.state.count + 1
}
})
}
只有用老师的那种写法才能合并吗?
写回答
1回答
-
双越
2020-07-02
只有用老师的那种写法才能合并吗?—— 我写的,传入函数,不会被合并
022020-07-02
相似问题