React使用过程中的异常

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

参考

https://stackoverflow.com/questions/43302963/how-to-fix-react-15-5-3-proptypes-deprecated-warning-when-using-create-react-app

猜你喜欢

转载自blog.csdn.net/farYang/article/details/78635150