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

React component参数传递

时间:2015-10-21 12:46:54      阅读:785      评论:0      收藏:0      [点我收藏+]

标签:

一.

var FancyCheckbox = React.createClass({
  render: function() {
    var fancyClass = this.props.checked ? ‘FancyChecked‘ : ‘FancyUnchecked‘;
    return (
      <div className={fancyClass} onClick={this.props.onClick}>
        {this.props.children}
      </div>
    );
  }
});
ReactDOM.render(
  <FancyCheckbox checked={true} onClick={console.log.bind(console)}>
    Hello world!
  </FancyCheckbox>,
  document.getElementById(‘example‘)
);

二.

var FancyCheckbox = React.createClass({
  render: function() {
    var { checked, ...other } = this.props;
    var fancyClass = checked ? ‘FancyChecked‘ : ‘FancyUnchecked‘;
    // `other` contains { onClick: console.log } but not the checked property
    return (
      <div {...other} className={fancyClass} />
    );
  }
});
ReactDOM.render(
  <FancyCheckbox checked={true} onClick={console.log.bind(console)}>
    Hello world!
  </FancyCheckbox>,
  document.getElementById(‘example‘)
);


React component参数传递

标签:

原文地址:http://my.oschina.net/CuckooLong/blog/519743

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