react v16 PropTypes undefined

1,368 阅读1分钟

TypeError: Cannot read property 'string' of undefined

在看《深入浅出React和Redux》这本书 chapter-02 demo中遇到的问题。

提示PropTypes出错

查了一下是由于react版本在15.5.0之后,将PropTypes从react库中废除掉了,当我们需要使用PropTypes时,要将其引入, 修改代码如下:

import React, { Component, PropTypes } from 'react';
import PropType from 'prop-types';
Counter.propTypes =  {
  caption: PropType.string.isRequired,
  initValue: PropType.number
};