React踩坑指南——setState不生效的解决方法

前端之家收集整理的这篇文章主要介绍了React踩坑指南——setState不生效的解决方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

不生效的写法:

const theQuery = Object.assign( {},{
  id: '',beginDate: '',endDate: '' // 查询条件
},_query.toJS() );
this.setState(theQuery);
action.getRefundList(theQuery)

可以生效的写法1:

const theQuery = Object.assign( {},{
  id: '',beginDate: '',endDate: '' // 查询条件
},_query.toJS() );
this.setState(theQuery,() => { action.getRefundList(theQuery) } );

可以生效的写法2:

const theQuery = Object.assign( {},_query.toJS() );
this.setState(Object.assign( {},theQuery );
action.getRefundList(theQuery)

具体原因我却不太清楚,还望路过的大神们不吝赐教~

原文链接:https://www.f2er.com/react/303021.html

猜你在找的React相关文章