码迷,mamicode.com
首页 > 其他好文 > 详细

报错 _react3.default.createClass is not a function

时间:2018-04-16 23:48:08      阅读:1056      评论:0      收藏:0      [点我收藏+]

标签:int   svi   number   tran   data   values   size   rpo   函数   

这个是因为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

标签:int   svi   number   tran   data   values   size   rpo   函数   

原文地址:https://www.cnblogs.com/cui-cui/p/8859113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!