当前位置 : 主页 > 网页制作 > React >

reactjs – 警告:不建议通过主React包访​​问PropTypes.使用来自npm的prop-types包而

来源:互联网 收集:自由互联 发布时间:2021-06-15
参见英文答案 How to fix React 15.5.3 PropTypes deprecated warning when using create-react-app2个 警告:不建议通过主React包访​​问PropTypes.请改用npm中的prop-types包. Warning: Accessing PropTypes via the main Reac
参见英文答案 > How to fix React 15.5.3 PropTypes deprecated warning when using create-react-app                                    2个
警告:不建议通过主React包访​​问PropTypes.请改用npm中的prop-types包.

> Warning: Accessing PropTypes via the main React package is deprecated.
> Use the prop-types package from npm instead.

我该怎么办?

请参阅React 15.5发行说明: https://github.com/facebook/react/releases/tag/v15.5.0

React.PropTypes已移至专用包:prop-types

以下是迁移指南:https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html

我个人使用官方的react-codemod工具来迁移我的项目.它可以使用单个命令更新您的项目.

网友评论