博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
React子组件怎么改变父组件的state
阅读量:5152 次
发布时间:2019-06-13

本文共 468 字,大约阅读时间需要 1 分钟。

React子组件怎么改变父组件的state

 

1.父组件

class Father extends React.Component {    construtor(props){        super(props);        this.state={            isRed: 0        }    }    onChangeState(isTrue){        this.setState(isTrue)    }    render(){        

颜色:{this.state.isRed}

}}

  

2.子组件

class Child extends React.Component {    render(){        

  

转载于:https://www.cnblogs.com/Michelle20180227/p/9081036.html

你可能感兴趣的文章
YCbCr-YUV
查看>>
Win10 + MySQL + Tableu + PPT + 可视化方案
查看>>
vs2010+qt4编译出现error LNK2001: 无法解析的外部符号 "public: virtual struct QMetaObject等错误...
查看>>
css权威指南学习笔记 —— css选择器
查看>>
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
查看>>
JS实现动态添加和删除div
查看>>
(转载)MySQL中UNION和UNION ALL的使用
查看>>
Visual Studio Code Angular4 配置环境
查看>>
Linux 学习碎片
查看>>
if else语句
查看>>
如何选择分类器?
查看>>
虚拟机Linux无法查看本地ip地址 解决办法
查看>>
[转]jvm加载类规则
查看>>
Python介绍
查看>>
windows 下创建 sqlite 数据库
查看>>
poj 3264(RMQ或者线段树)
查看>>
hdu 4985(模拟)
查看>>
c#第一周的游戏
查看>>
Caffe学习记录(十二) ICNet分割网络学习二
查看>>
WPF后台设置xaml控件的样式System.Windows.Style
查看>>