当咱们在设计接口的时候,将一些常见的设计元素(如按钮、表单、布局等)拆分红有着良好接口的可重用的组件。这样的话,下次你构建UI的时候只要写少许的代码。html
随着应用的增加,确保你的组件正确使用是有必要的。React容许咱们指定propTypes。React.PropTypes声明了一系列的校验确保咱们接收的数据是合法的。若是不合法的数据出如今属性当中,控制台会打印警告信息。下面是不一样的校验类型:node
React.createClass({ propTypes: { // You can declare that a prop is a specific JS primitive. By default, these // are all optional. optionalArray: React.PropTypes.array, optionalBool: React.PropTypes.bool, optionalFunc: React.PropTypes.func, optionalNumber: React.PropTypes.number, optionalObject: React.PropTypes.object, optionalString: React.PropTypes.string, // Anything that can be rendered: numbers, strings, elements or an array // containing these types. optionalNode: React.PropTypes.node, // A React element. optionalElement: React.PropTypes.element, // You can also declare that a prop is an instance of a class. This uses // JS's instanceof operator. optionalMessage: React.PropTypes.instanceOf(Message), // You can ensure that your prop is limited to specific values by treating // it as an enum. optionalEnum: React.PropTypes.oneOf(['News', 'Photos']), // An object that could be one of many types optionalUnion: React.PropTypes.oneOfType([ React.PropTypes.string, React.PropTypes.number, React.PropTypes.instanceOf(Message) ]), // An array of a certain type optionalArrayOf: React.PropTypes.arrayOf(React.PropTypes.number), // An object with property values of a certain type optionalObjectOf: React.PropTypes.objectOf(React.PropTypes.number), // An object taking on a particular shape optionalObjectWithShape: React.PropTypes.shape({ color: React.PropTypes.string, fontSize: React.PropTypes.number }), // You can chain any of the above with `isRequired` to make sure a warning // is shown if the prop isn't provided. requiredFunc: React.PropTypes.func.isRequired, // A value of any data type requiredAny: React.PropTypes.any.isRequired, // You can also specify a custom validator. It should return an Error // object if the validation fails. Don't `console.warn` or throw, as this // won't work inside `oneOfType`. customProp: function(props, propName, componentName) { if (!/matchme/.test(props[propName])) { return new Error('Validation failed!'); } } }, /* ... */ });
React容许咱们下面的方式自定义属性的默认值:缓存
var ComponentWithDefaultProps = React.createClass({ getDefaultProps: function() { return { value: 'default value' }; } /* ... */ });
getDefaultProps()的值将会被缓存,当this.props.value的值没有被父组件指定时,将会使用这个默认值。app
经过属性延伸的语法,能够快速的将组件属性添加到HTML标签上:ide
var CheckLink = React.createClass({ render: function() { // This takes any props passed to CheckLink and copies them to <a> return <a {...this.props}></a>; } }); React.render( <CheckLink href="/checked.html"> Click here! </CheckLink>, document.getElementById('example') );
须要注意的是,这种写法会添加全部的属性。当标签内容为空时,children也会被添加其中。上面的例子是一个很好的实践。布局
在React当中,组件复用可以减小咱们的代码量。但有时候不一样的组件之间可能会相同的功能点。这个一般被叫作Cross-cutting concern。React提供了混入来解决这个问题。
官方举例说明的一种状况:一个组件,每隔一段时间更新一次。很容易就想到使用setInterval(),当不须要的时候须要取消Interval。React提供了组件生命周期的方法告诉咱们组件何时被建立和销毁。根据这些建立一个简单的混入:ui
var SetIntervalMixin = { componentWillMount: function() { this.intervals = []; }, setInterval: function() { this.intervals.push(setInterval.apply(null, arguments)); }, componentWillUnmount: function() { this.intervals.map(clearInterval); } }; var TickTock = React.createClass({ mixins: [SetIntervalMixin], // Use the mixin getInitialState: function() { return {seconds: 0}; }, componentDidMount: function() { this.setInterval(this.tick, 1000); // Call a method on the mixin }, tick: function() { this.setState({seconds: this.state.seconds + 1}); }, render: function() { return ( <p> React has been running for {this.state.seconds} seconds. </p> ); } }); React.render( <TickTock />, document.getElementById('example') );