具有超级外部构造函数的错误模式示例

时间:2016-08-03 05:43:03

标签: react-native

在链接https://facebook.github.io/react-native/docs/modal.html中使用代码模式示例时,任何人都可以帮我修复此错误。我无法理解为什么会出现此错误,尽管我编写了完全相同的代码示例。 error

1 个答案:

答案 0 :(得分:1)

使用ES6课程。构造函数仅适用于ES6类。

class ModalExample extends React.Component {
   constructor () {
       super(props)
   }
   render () {
     // code
   }
}

如果您不想使用ES6课程,请使用getInitialState设置状态。

var ModalExample = React.createClass ({
     getInitialState: function() {
          return {
               modalVisible: false
          }
     }
})