博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
React从0到1--组件向外传递数据
阅读量:7034 次
发布时间:2019-06-28

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

通过props向外传递数据

在父组件ClickCounter文件里面

constructor(props){
super(props); this.onCounterUpdate = this.onCounterUpdate.bind(this); this.initValues = [0,10,20]; const initSum = this.initValues.reduce((a,b)=>a+b,0);//求和 this.state = {
count:0, sum:initSum }; }
onCounterUpdate(newValue,previousValue){
console.log(newValue,previousValue) const valueChange = newValue - previousValue this.setState({sum:this.state.sum+valueChange}) }
render(){
return(
Total Count:{this.state.sum}
); } 子组件counter文件代码
onClickIncButton() {
this.updateCount(true); } onClickDecButton() {
this.updateCount(false); }
updateCount(isIncrement){
console.log(isIncrement) const previousValue = this.state.count; const newValue = isIncrement?previousValue-1:previousValue +1; this.setState({count:newValue}) this.props.onUpdate(newValue,previousValue) }
render() {
const buttonStyle = {
color: 'red' }; const {caption} = this.props; console.log ('enter ControlPanel render '); return (
{caption} count:{this.state.count}
) }

转载于:https://www.cnblogs.com/lk1186578324/p/9806020.html

你可能感兴趣的文章
twisted的异步库汇总-- mysql,redis,mongo,zmq,sockjs等
查看>>
Python3 基于asyncio的新闻爬虫思路
查看>>
af3.0学习使用和理解
查看>>
Linux vmstat命令实战详解
查看>>
输入字符串,输出字符串所有组合
查看>>
Python中 字典排序、列表排序
查看>>
ubuntu12.04 安装vnc
查看>>
我的友情链接
查看>>
前嗅ForeSpider脚本教程:基础对象(三)
查看>>
MongoDB的数据复制和数据切片
查看>>
IDEA安装FindBugs插件
查看>>
Thinking in Java之深入Collection源码学习
查看>>
Ceph:一个 Linux PB 级分布式文件系统
查看>>
Red Hat Enterprise 6.3手动安装Thunderbird
查看>>
linux邮件服务器配置过程
查看>>
Mac OS X 启动和终止Redis, Mac常用命令,ssh免密
查看>>
h3c s5820交换机_简单配置
查看>>
Nagios开发邮件报警程序
查看>>
memcached 和 mysql 结合使用的两种实现选择?
查看>>
Blog被“挂广告”的来龙去脉——家用路由器的安全问题
查看>>