React 里有一个非常常用的模式就是对组件做一层抽象。组件对外公开一个简单的属性(Props)来实现功能,但内部细节可能有非常复杂的实现。
可以使用JSX 展开属性来合并现有的 props 和其它值:
return <Component {...this.props} more="values" />;
如果不使用 JSX,可以使用一些对象辅助方法如 ES6 的Object.assign
或 Underscore_.extend
。
return Component(Object.assign({},this.props,{ more: 'values' }));
下面的教程介绍一些最佳实践。使用了 JSX 和 ES7 的还在试验阶段的特性。
手动传递
大部分情况下你应该显式地向下传递 props。这样可以确保只公开你认为是安全的内部 API 的子集。
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> ); } }); React.render( <FancyCheckBox checked={true} onClick={console.log.bind(console)}> Hello world! </FancyCheckBox>,document.getElementById('example') );
但name
这个属性怎么办?还有title
、onMouSEOver
这些 props?
在 JSX 里使用...
传递
有时把所有属性都传下去是不安全或啰嗦的。这时可以使用解构赋值中的剩余属性特性来把未知属性批量提取出来。
列出所有要当前使用的属性,后面跟着...other
。
var { checked,...other } = this.props;
这样能确保把所有 props 传下去,除了那些已经被使用了的。
var FancyCheckBox = React.createClass({ render: function() { var { checked,...other } = this.props; var fancyClass = checked ? 'FancyChecked' : 'FancyUnchecked'; // `other` 包含 { onClick: console.log } 但 checked 属性除外 return ( <div {...other} className={fancyClass} /> ); } }); React.render( <FancyCheckBox checked={true} onClick={console.log.bind(console)}> Hello world! </FancyCheckBox>,document.getElementById('example') );
注意:
在传递这些未知的other
属性时,要经常使用解构赋值模式。
var FancyCheckBox = React.createClass({ render: function() { var fancyClass = this.props.checked ? 'FancyChecked' : 'FancyUnchecked'; // 反模式:`checked` 会被传到里面的组件里 return ( <div {...this.props} className={fancyClass} /> ); } });
使用和传递同一个 Prop
如果组件需要使用一个属性又要往下传递,可以直接使用checked={checked}
再传一次。这样做比传整个this.props
对象要好,因为更利于重构和语法检查。
Box-sizing: border-Box; overflow: auto; font-family: Menlo,title,...other } = this.props; var fancyClass = checked ? 'FancyChecked' : 'FancyUnchecked'; var fancyTitle = checked ? 'X ' + title : 'O ' + title; return ( <label> <input {...other} checked={checked} className={fancyClass} type="checkBox" /> {fancyTitle} </label> ); } });
注意:
顺序很重要,把
{...other}
放到 JSX props 前面会使它不被覆盖。上面例子中我们可以保证 input 的 type 是"checkBox"
。
剩余属性和展开属性...
剩余属性可以把对象剩下的属性提取到一个新的对象。会把所有在解构赋值中列出的属性剔除。
这是JSX 命令行工具配合--harmony
标记来启用 ES7 语法。
使用 Underscore 来传递
如果不使用 JSX,可以使用一些库来实现相同效果。Underscore 提供_.omit
来过滤属性,_.extend
复制属性到新的对象。
var FancyCheckBox = React.createClass({ render: function() { var checked = this.props.checked; var other = _.omit(this.props,'checked'); var fancyClass = checked ? 'FancyChecked' : 'FancyUnchecked'; return ( React.DOM.div(_.extend({},other,{ className: fancyClass })) ); } });原文链接:https://www.f2er.com/react/306006.html