报错 _react3.default.createClass is not a function
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了报错 _react3.default.createClass is not a function相关的知识,希望对你有一定的参考价值。
这个是因为react最新版本抛弃使用了createClass这个函数,这个也是为了配合ES6 。这种情况下会报错
var Popover = React.createClass({ | |
propTypes: { | |
isVisible: PropTypes.bool, | |
onClose: PropTypes.func, | |
}, | |
......... ........ ........ |
应修改为下面的写法:
export default class Popover extends React.Component{
getInitialState() {
return {
contentSize: {},
anchorPoint: {},
popoverOrigin: {},
placement: ‘auto‘,
isTransitioning: false,
defaultAnimatedValues: {
scale: new Animated.Value(0),
translate: new Animated.ValueXY(),
fade: new Animated.Value(0),
},
};
}
以上是关于报错 _react3.default.createClass is not a function的主要内容,如果未能解决你的问题,请参考以下文章
为啥在 __assume 中使用函数调用时 MSVC 不报错?
Python报错:TypeError: __init__() got an unexpected keyword argument 'io_loop' 原因及解决方案