React Props(属性)

本节介绍了 React Props。

state 和 props 主要的区别在于 props 是不可变的,而 state 可以根据与用户交互来改变。这就是为什么有些容器组件需要定义 state 来更新和修改数据。 而子组件只能通过 state 来传递数据。


使用 Props

以下实例演示了如何在组件中使用 props:

  1. var HelloMessage = React.createClass({
  2. render: function() {
  3. return <h1>Hello {this.props.name}</h1>;
  4. }
  5. });
  6.  
  7. ReactDOM.render(
  8. <HelloMessage name="React" />,
  9. document.getElementById('example')
  10. );

实例中 name 属性通过 this.props.name 来获取。


默认 Props

你可以通过 getDefaultProps() 方法为 props 设置默认值,实例如下:

  1. var HelloMessage = React.createClass({
  2. getDefaultProps: function() {
  3. return {
  4. name: 'React'
  5. };
  6. },
  7. render: function() {
  8. return <h1>Hello {this.props.name}</h1>;
  9. }
  10. });
  11.  
  12. ReactDOM.render(
  13. <HelloMessage />,
  14. document.getElementById('example')
  15. );

State 和 Props

以下实例演示了如何在应用中组合使用 state 和 props 。我们可以在父组件中设置 state, 并通过在子组件上使用 props 将其传递到子组件上。在 render 函数中, 我们设置 name 和 site 来获取父组件传递过来的数据。

  1. var WebSite = React.createClass({
  2. getInitialState: function() {
  3. return {
  4. name: "baidu",
  5. site: "https://www.baidu.com"
  6. };
  7. },
  8.  
  9. render: function() {
  10. return (
  11. <div>
  12. <Name name={this.state.name} />
  13. <Link site={this.state.site} />
  14. </div>
  15. );
  16. }
  17. });
  18.  
  19. var Name = React.createClass({
  20. render: function() {
  21. return (
  22. <h1>{this.props.name}</h1>
  23. );
  24. }
  25. });
  26.  
  27. var Link = React.createClass({
  28. render: function() {
  29. return (
  30. <a href={this.props.site}>
  31. {this.props.site}
  32. </a>
  33. );
  34. }
  35. });
  36.  
  37. ReactDOM.render(
  38. <WebSite />,
  39. document.getElementById('example')
  40. );

Props 验证

Props 验证使用 propTypes,它可以保证我们的应用组件被正确使用,React.PropTypes 提供很多验证器 (validator) 来验证传入数据是否有效。当向 props 传入无效数据时,JavaScript 控制台会抛出警告。

以下实例创建一个 Mytitle 组件,属性 title 是必须的且是字符串,非字符串类型会自动转换为字符串:

  1. var title = "React教程";
  2. // var title = 123;
  3. var MyTitle = React.createClass({
  4. propTypes: {
  5. title: React.PropTypes.string.isRequired,
  6. },
  7.  
  8. render: function() {
  9. return <h1> {this.props.title} </h1>;
  10. }
  11. });
  12. React.render(
  13. <MyTitle title={title} />,
  14. document.getElementById('example')
  15. );

如果 title 使用数字变量,控制台会出现以下错误信息:

Warning: Failed propType: Invalid prop title of type number supplied to MyTitle, expected string.

更多验证器说明如下:

  1. React.createClass({
  2. propTypes: {
  3. // 可以声明 prop 为指定的 JS 基本数据类型,默认情况,这些数据是可选的
  4. optionalArray: React.PropTypes.array,
  5. optionalBool: React.PropTypes.bool,
  6. optionalFunc: React.PropTypes.func,
  7. optionalNumber: React.PropTypes.number,
  8. optionalObject: React.PropTypes.object,
  9. optionalString: React.PropTypes.string,
  10.  
  11. // 可以被渲染的对象 numbers, strings, elements 或 array
  12. optionalNode: React.PropTypes.node,
  13.  
  14. // React 元素
  15. optionalElement: React.PropTypes.element,
  16.  
  17. // 用 JS 的 instanceof 操作符声明 prop 为类的实例。
  18. optionalMessage: React.PropTypes.instanceOf(Message),
  19.  
  20. // 用 enum 来限制 prop 只接受指定的值。
  21. optionalEnum: React.PropTypes.oneOf(['News', 'Photos']),
  22.  
  23. // 可以是多个对象类型中的一个
  24. optionalUnion: React.PropTypes.oneOfType([
  25. React.PropTypes.string,
  26. React.PropTypes.number,
  27. React.PropTypes.instanceOf(Message)
  28. ]),
  29.  
  30. // 指定类型组成的数组
  31. optionalArrayOf: React.PropTypes.arrayOf(React.PropTypes.number),
  32.  
  33. // 指定类型的属性构成的对象
  34. optionalObjectOf: React.PropTypes.objectOf(React.PropTypes.number),
  35.  
  36. // 特定 shape 参数的对象
  37. optionalObjectWithShape: React.PropTypes.shape({
  38. color: React.PropTypes.string,
  39. fontSize: React.PropTypes.number
  40. }),
  41.  
  42. // 任意类型加上 `isRequired` 来使 prop 不可空。
  43. requiredFunc: React.PropTypes.func.isRequired,
  44.  
  45. // 不可空的任意类型
  46. requiredAny: React.PropTypes.any.isRequired,
  47.  
  48. // 自定义验证器。如果验证失败需要返回一个 Error 对象。不要直接使用 `console.warn` 或抛异常,因为这样 `oneOfType` 会失效。
  49. customProp: function(props, propName, componentName) {
  50. if (!/matchme/.test(props[propName])) {
  51. return new Error('Validation failed!');
  52. }
  53. }
  54. },
  55. /* ... */
  56. });