码迷,mamicode.com
首页 > 其他好文 > 详细

react 数据传递 (一)

时间:2020-06-08 22:10:30      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:通过   return   this   引用   div   one   color   boa   com   

class Board extends React.Component {
  renderSquare(i) {
    return <Square value={i} />;
  }
}
class Square extends React.Component {
  render() {
    return (
      <button className="square">
        {this.props.value}
      </button>
    );
  }
}

Board组件引用了Square组件;
父组件Boaed通过属性名={参数},传递
子组件通过{this.props.属性名}接收

react 数据传递 (一)

标签:通过   return   this   引用   div   one   color   boa   com   

原文地址:https://www.cnblogs.com/ssszjh/p/13068813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!