开发者问题收集

TypeError:undefined 不是 React 中的对象

2019-08-22
772

我是 React 新手,不知道如何修复此问题,以便启动并运行我的第一个应用程序:

TypeError: undefined is not an object (evaluating 'react__WEBPACK_IMPORTED_MODULE_0__["PropTypes"].func')

按照本教程:Lynda - 构建和部署全栈 React 应用程序。在 Google 上搜索错误消息。我试图添加这一行: import PropTypes from 'prop-types'; 显然它没有帮助。

enter image description here


enter image description here

1个回答

prop-types 是一个 npm 包 ,不包含在使用 create-react-app 的默认安装中。必须使用 npmyarn 安装并像这样导入

import PropTypes from 'prop-types'
Dupocas
2019-08-22