组件间传值更新接口重新render新数据
通过组件间传值方法更新接口重新render新数据
前提描述:
现有一功能,在子组件A里左右切换选择不同的时间,将选择的时间值传给兄弟组件B,子组件B重新请求接口,获取新数据并重新渲染。
文件分级:
父组件:CarReport.jsx
子组件A:TimeChoose.jsx
子组件B:Day’Operate.jsx
ui图示:
实现方式:
1.先将子组件A里的时间值传给父组件,父组件在传给子组件B,也就是兄弟组件间的传值(组件间的传值可借鉴上一篇)
2.子组件A切换时间,子组件B获取到新的时间,重新请求接口,这时需要用到一个生命周期函数:componentWillReceiveProps(nextProps){ }
class DayOperate extends React.Component{
constructor(props){
super(props);
this.state = {
func:this.getReport(this.props.choseTime) //这是页面初始化时调用函数请求接口
}
}
// 这是子组件A把时间传给当前子组件B时,再次请求接口,需要使用
componentWillReceiveProps(nextProps){
if(this.props.choseTime != nextProps.choseTime){
this.getReport(nextProps.choseTime); //调用函数,重新请求接口
}
return true;
}
getReport=(time)=>{
// 函数里会做一些请求接口的处理
}
render(){
return(
<div className="dayOperate">
// render对数据做一些渲染操作
</div>
)
}
}
关于componentWillReceiveProps:
componentWillReceiveProps (nextProps ) props即将变化之前
props发生变化以及父组件重新渲染时都会触发该生命周期,在该钩子内可以通过参数nextProps获取变化后的props参数,通过this.props访问之前的props。该生命周期内可以进行setState。(React v16.3后废弃该生命周期,可以用新的周期 static getDerivedStateFromProps 代替)
目前自己尝试这种方法确实有效,新的周期函数static getDerivedStateFromProps还没有进行尝试,如果哪位朋友用过新的方法或者觉得我目前使用的方法存在一些问题,欢迎大家指导,在此谢过~~ φ(゜▽゜*)♪
上一篇: 动态规划算法之矩阵连乘问题思路
下一篇: LESS
推荐阅读