React.PropTypes is deprecated since React 15.5.0, use the npm module prop-types instead
解决:
将原来使用的
import PropTypes from 'react'
fieldXX: PropTypes.object.isRequired
代替为
import PropTypes from 'prop-types'
fieldXX: PropTypes.object.isRequired
本文介绍如何解决React 15.5及更高版本中关于PropTypes废弃的问题,指导开发者从'react'导入PropTypes改为使用独立的'prop-types'模块。
将原来使用的
import PropTypes from 'react'
fieldXX: PropTypes.object.isRequired
代替为
import PropTypes from 'prop-types'
fieldXX: PropTypes.object.isRequired
816

被折叠的 条评论
为什么被折叠?