无法读取未定义的属性“字符串” React.PropTypes

时间:2019-08-24 17:05:22

标签: javascript reactjs npm react-proptypes

我通过运行prop-types安装了npm i prop-types --save软件包,并且我的依赖项是:

 "dependencies": {
    "prop-types": "^15.7.2",
    "react": "^16.8.6",
    "react-dom": "^16.8.6",
    "react-scripts": "3.0.1"
  },

我的代码:

import React from 'react';
import PropTypes from 'prop-types';


function Question(props) {
  return (
    <h2 className="question">{props.content}</h2>
  );
 }

 Question.propTypes = {
    content: React.PropTypes.string.isRequired
  };

  export default Question;

我重新启动了节点5-6次,但仍然出现此错误:       enter image description here

我在这里想念什么?

2 个答案:

答案 0 :(得分:1)

基于ReactJS文档/教程页面Type Checking with PropTypes,您似乎正在尝试使用旧方法访问PropTypes

尝试使用此代替:

Question.propTypes = {
    content: PropTypes.string.isRequired
};

答案 1 :(得分:1)

看看documentation并不需要React前缀:

Question.propTypes = {
  content: PropTypes.string.isRequired
};