react
如何实现父组件传值子组件,而子组件只负责渲染数据,下面web建站小编给大家详细介绍一下实现代码!
父组件代码如下:
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() { <Children data={this.state.data}} /> } }
子组件代码如下:
componentWillReceiveProps(nextProps) { const { data } = this.state const newdata = nextProps.data.toString() if (data.toString() !== newdata) { this.setState({ data: nextProps.data, }) } }
ps:react的componentWillReceiveProps周期是存在期用改变的props来判断更新自身state。
上面是“react如何实现父组件传值子组件(子组件只负责渲染)”的全面内容,想了解更多关于 reactjs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2756.html
workflows工作流
- 一个黄色的海绵宝宝ComfyUI工作流
- 一只躲在一堆秋叶里的小刺猬
- 一个全脸彩绘和纹身的超级名模ComfyUI工作流
- 一个港口配备了小型船只、起重机、集装箱和码头
- 一个男孩在吃西瓜ComfyUI工作流
- 一轮月亮悬挂在树上的天空中ComfyUI工作流
- 一条色彩斑斓的超现实小孔雀鱼ComfyUI工作流
- 蘑菇屋,梦幻家园comfyui工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!