react 接口数据放组件哪个地方
1 回答
莫回无
TA贡献1865条经验 获得超7个赞
你去好好看一下React组件生命周期这一部分。你可以在子组件添加一个componentWillRecieveProps周期,在里面获取到即将接收的props。如下: componentWillReceiveProps(nextProps) { this.setState({ A: nextProps.A }); }
- 1 回答
- 0 关注
- 1208 浏览
添加回答
举报
0/150
提交
取消