老师,React.PropTypes.number这么用,在React v15.5.0以后就有报错了。
来源:8-4 可复用组件
美堂蛮
2017-04-22
会报出来:Warning: Accessing PropTypes via the main React package is deprecated. Use the prop-types package from npm instead.
这个警告。
按照这个提示,下面这么用,好像提示就没了:
npm install prop-types
import PropTypes from 'prop-types'
BodyIndex.propTypes = {
userid: PropTypes.number
}
写回答
1回答
-
https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html
import PropTypes from 'prop-types';
需要 prop-types 包,最新版本的问题,你看上面的链接。
00
相似问题
老师您说react-router 4
回答 1
登录功能报错
回答 4