在React中,数据是自顶向下流动的(称为单项数据流),从父组件传递到子组件。所以组件是简单且易于把握的,它们只需从父节点获取props渲染便可。若是顶层组件的某个prop改变了,React会递归向下遍历整个组件树,重新渲染全部使用这个属性的组件。
然而在React中出了props以外还有本身的状态,这些状态只能在组件内修改,那这个状态就是statecss
props:就是properties的缩写,你可使用它把任意类型的数据传递给组件(通俗一点就是,能够当成方法传递的参数)
state:当前组件内部数据node
能够在挂载组件的时候设置它的propsreact
<Component title="标题" /> var data = { name : "刘宇", title : "标题" }; <Component {...data} />
在组件内部调用的话就是使用 this.propses6
//Comment.js import React, { Component } from 'react';、 import './Comment.css'; class Comment extends Component { render() { return ( <div className="Comment"> {/**接受参数**/} {this.props.name} {/**接受子节点**/} {this.props.children} </div> ); } } export default Comment; //App.js class App extends Component { render() { return ( <div className="App"> {/**调用组件**/} <Comment name="刘宇" /**传递参数**/>组件插入内容{/**子节点**/}</Comment> </div> ); } } export default App; //index.js import React from 'react'; import ReactDOM from 'react-dom'; import App from './App'; import './index.css'; ReactDOM.render( <App />, document.getElementById('root') );
propTypes用于规范props的类型与必须的状态。若是组件定义了propTypes,那么在开发环境下,就会对组件的props值的类型做检查,若是传入的props不能与之匹配,React将实时在控制台里报warning(警告);segmentfault
static propTypes = { // 你能够定义一个js原始类型的prop,默认请状况下,这是都是可选的 optionalArray: React.PropTypes.array, optionalBool: React.PropTypes.bool, optionalFunc: React.PropTypes.func, optionalNumber: React.PropTypes.number, optionalObject: React.PropTypes.object, optionalString: React.PropTypes.string, optionalSymbol: React.PropTypes.symbol, // 任何能够渲染的东西:数字,字符串,元素或数组(或片断)。 optionalNode: React.PropTypes.node, // React元素 optionalElement: React.PropTypes.element, // 你也能够声明prop是某个类的实例。 内部使用的是JS的instanceof运算符。 optionalMessage: React.PropTypes.instanceOf(Message), // 你能够经过将它做为枚举来确保你的prop被限制到特定的值。 optionalEnum: React.PropTypes.oneOf(['News', 'Photos']), // 能够是许多类型之一的对象 optionalUnion: React.PropTypes.oneOfType([ React.PropTypes.string, React.PropTypes.number, React.PropTypes.instanceOf(Message) ]), // 某种类型的数组 optionalArrayOf: React.PropTypes.arrayOf(React.PropTypes.number), // 具备某种类型的属性值的对象 optionalObjectOf: React.PropTypes.objectOf(React.PropTypes.number), // 采起特定样式的对象 optionalObjectWithShape: React.PropTypes.shape({ color: React.PropTypes.string, fontSize: React.PropTypes.number }), // 你能够用`isRequired`来链接到上面的任何一个类型,以确保若是没有提供props的话会显示一个警告。 requiredFunc: React.PropTypes.func.isRequired, // 任何数据类型 requiredAny: React.PropTypes.any.isRequired, // 您还能够指定自定义类型检查器。 若是检查失败,它应该返回一个Error对象。 不要`console.warn`或throw,由于这不会在`oneOfType`内工做。 customProp: function(props, propName, componentName) { if (!/matchme/.test(props[propName])) { return new Error( 'Invalid prop `' + propName + '` supplied to' + ' `' + componentName + '`. Validation failed.' ); } }, // 您还能够为`arrayOf`和`objectOf`提供自定义类型检查器。 若是检查失败,它应该返回一个Error对象。 // 检查器将为数组或对象中的每一个键调用验证函数。 // 检查器有两个参数,第一个参数是数组或对象自己,第二个是当前项的键。 customArrayProp: React.PropTypes.arrayOf(function(propValue, key, componentName, location, propFullName) { if (!/matchme/.test(propValue[key])) { return new Error( 'Invalid prop `' + propFullName + '` supplied to' + ' `' + componentName + '`. Validation failed.' ); } }) }; //以上是ES6的写法,若是使用的是createClass MyComponent.propTypes = { //同上 }
class MyComponent extends React.Component { render() { // 只能包含一个子元素,不然会给出警告 const children = this.props.children; return ( <div>{children}</div> ); } } MyComponent.propTypes = { children: React.PropTypes.element.isRequired }
能够为组件添加getDefaultProps来设置属性的默认值。数组
//es6写法 class Comment extends Component { //设置默认props值 static defaultProps = { name:"默认值" } render() { return ( <div className="Comment"> {/**接受参数**/} {this.props.name} {/**接受子节点**/} {this.props.children} </div> ); } } var Comment = React.createClass( { //设置默认props值 getDefaultProps : { name:"默认值" }, render : function(){ return ( <div className="Comment"> {/**接受参数**/} {this.props.name} {/**接受子节点**/} {this.props.children} </div> ); } })
注意:props能够访问不能够修改,若是须要修改,请使用statedom
state是组件内部的属性。组件自己是一个状态机,他能够在constructor中经过this.state直接定义他的值,而后根据这些值来渲染不一样的UI,当state的值发生改变时,能够经过this.setState方法让组件再次调用render方法,来渲染新的UI.函数
var Comment = React.createClass( { //设置state值 getInitialState : { num:0 }, addNum : function(){ var num = this.state.num++; this.setState({ num:num }) }, render : function(){ return ( <div className="Comment"> <button onClick>{this.state.num}</button> </div> ); } }) //es6写法 class Comment extends Component { constructor(props) { super(props); this.state = { num : 0 }; this.addNum = this.addNum.bind(this) } addNum() { var num = this.state.num++; this.setState({ num:num }) } render() { return ( <div className="Comment"> <button onClick>{this.state.num}</button> </div> ); } }
上一篇:react开发教程(三)组件的构建
下一篇:react开发教程(五)生命周期ui