Advanced Guide--Typechecking with PropTypes

p,pre,span,div,code { font-size: 16px }

React拥有内置的类型检测机制,为组件的props运行类型检测,需要制定propTypes属性:

class Greeting extends React.Component {
  render() {
    return (
      <h1>Hello, {this.props.name}</h1>
    );
  }
}

Greeting.propTypes = {
  name: React.PropTypes.string
};

React.PropTypes输出一系列的验证器,用以确保你收到的数据是合法的。

一、React.PropTypes

下面是一个例子记录了不同的验证器;

MyComponent.propTypes = {
  // 你可以声明一个prop是特定的JS原始数据
  // 默认情况下这些都是可选的
  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,

  // 任何可以被渲染的事物:numbers, strings, elements or an array
  // (or fragment) containing these types.
  optionalNode: React.PropTypes.node,

  // A React element.
  optionalElement: React.PropTypes.element,

  // 声明一个prop是某个类的实例,用到了JS的instanceof运算符
  optionalMessage: React.PropTypes.instanceOf(Message),

  // 你可以使用enum来确保你的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’,来确保prop必须有值
  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对象
  // 在array或者object中,验证器对于每个key都会被调用The first two
  // 验证器的前两个arguments是array或者object自身以及当前的key值
  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.‘
      );
    }
  })
};
时间: 2024-10-27 03:53:47

Advanced Guide--Typechecking with PropTypes的相关文章

Typechecking With PropTypes

[Typechecking With PropTypes] 1.props类型检查 React has some built-in typechecking abilities. To run typechecking on the props for a component, you can assign the special propTypesproperty: 2.child个数设置 With React.PropTypes.element you can specify that on

官网学习笔记--Advanced Guide

p,pre,span,code,div { font-size: 16px } 一.JSX in Depth 1.1 choosing the type at runtime import React from 'react'; import { PhotoStory, VideoStory } from './stories'; const components = { photo: PhotoStory, video: VideoStory }; function Story(props)

[it-ebooks]电子书列表

#### it-ebooks电子书质量不错,但搜索功能不是很好 #### 格式说明  [ ]中为年份      ||  前后是标题和副标题  #### [2014]: Learning Objective-C by Developing iPhone Games || Leverage Xcode and Objective-C to develop iPhone games http://it-ebooks.info/book/3544/ Learning Web App Developmen

Github 的一个免费编程书籍列表

Index Ada Agda Alef Android APL Arduino ASP.NET MVC Assembly Language Non-X86 AutoHotkey Autotools Awk Bash Basic BETA C C# C++ Chapel Cilk Clojure COBOL CoffeeScript ColdFusion Cool Coq D Dart DB2 Delphi / Pascal DTrace Elasticsearch Emacs Erlang F#

转:Google C++ Testing Framework Primer

(貌似下面的链接都失效了哇) 翻译:Ray Li([email protected]) 修改日期:2008年7月6日原文参见:http://code.google.com/p/googletest/wiki/GoogleTestPrimer Introduction:为什么需要Google C++ 测试框架? Google C++ 测试框架帮助你更好地编写C++测试. 无论你是在Linux,Windows,还是Mac环境下工作,只要你编写C++代码,Google 测试框架都可以帮上忙. 那么,哪

[转载] google mock cookbook

原文: https://code.google.com/p/googlemock/wiki/CookBook Creating Mock Classes Mocking Private or Protected Methods Mocking Overloaded Methods Mocking Class Templates Mocking Nonvirtual Methods Mocking Free Functions The Nice, the Strict, and the Naggy

计算机类免费电子书共享

列表最早来自stackoverflow上的一个问题:List of freely available programming books 现在在github上进行维护:free-programming-books List of Free Programming Books This list initially was a clone of stackoverflow - List of freely available programming books by George Stocker.

Github上的1000多本免费电子书重磅来袭!

这个GIthub库的免费电子书资源绝对值得你拥有,赶紧收藏吧! 以前 StackOverFlow 也给出了一个免费电子书列表,现在在Github上可以看到时刻保持更新的列表了. 瞥一眼下面的书籍分类目录,你就能知道这个免费电子书库的含金量了吧.记得一定要看几本,千万别下载了大量书籍而束之高阁! 行动重于空想! Github地址:     https://github.com/vhf/free-programming-books/blob/master/free-programming-books

(转) [it-ebooks]电子书列表

[it-ebooks]电子书列表 [2014]: Learning Objective-C by Developing iPhone Games || Leverage Xcode and Objective-C to develop iPhone games http://it-ebooks.info/book/3544/Learning Web App Development || Build Quickly with Proven JavaScript Techniques http://

《Advanced Bash-scripting Guide》学习(十七):用more来查看gzip文件

本文所选的例子来自于<Advanced Bash-scripting Gudie>一书,译者 杨春敏 黄毅 1 #!/bin/bash 2 #使用more查看gzip文件 3 4 NOARGS=65 5 NOTFOUND=66 6 NOTGZIP=67 7 8 if [ $# -eq 0 ] #[ $# -eq 0 ]与[ -z "$1" ]有同样的效果 9 then 10 echo "Usage: `basename $0` filename" >