React学习笔记—属性转移

前端之家收集整理的这篇文章主要介绍了React学习笔记—属性转移前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

React当中的组件嵌套很常见,外部组件暴露的属性也许会干一些复杂的实现细节。
我们可以使用属性延伸覆盖原来的属性

  1. var Component = React.createClass({
  2. render: function () {
  3. return <div {...this.props} title="zzz">this is a div</div>
  4. }
  5. });
  6.  
  7. React.render(
  8. <Component name="xxx" title="yyy"/>,document.body
  9. );

手动转移

大部分情况你应该明确的向下传递属性,这样可以确保你只需要暴露内部API的一个子集。

  1. var FancyCheckBox = React.createClass({
  2. render: function() {
  3. var fancyClass = this.props.checked ? 'FancyChecked' : 'FancyUnchecked';
  4. return (
  5. <div className={fancyClass} onClick={this.props.onClick}>
  6. {this.props.children}
  7. </div>
  8. );
  9. }
  10. });
  11. React.render(
  12. <FancyCheckBox checked={true} onClick={console.log.bind(console)}>
  13. Hello world!
  14. </FancyCheckBox>,document.getElementById('example')
  15. );

但是name属性、title属性或者onMouSEOver属性呢?

利用JSX ... 转移

  1. var FancyCheckBox = React.createClass({
  2. render: function() {
  3. var { checked,...other } = this.props;
  4. var fancyClass = checked ? 'FancyChecked' : 'FancyUnchecked';
  5. // `other` contains { onClick: console.log } but not the checked property
  6. return (
  7. <div {...other} className={fancyClass} />
  8. );
  9. }
  10. });
  11. React.render(
  12. <FancyCheckBox checked={true} onClick={console.log.bind(console)}>
  13. Hello world!
  14. </FancyCheckBox>,document.body
  15. );

var { checked,...other } = this.props;使用了ES7的结构化赋值,所以引入时要加入harmony,如下:

  1. <script type="text/jsx;harmony=true">

猜你在找的React相关文章