如何在ES5中使用道具React native

问题描述:

我是新来的原生反应,我使用ES5标准,我不知道如何使用ES5中的道具。请帮助我,请分享片段....如何在ES5中使用道具React native

const SharePhotoPage= React.createClass({ 

    render() { 

     return (
       <View > 
       </View> 
     ); 
    }, 
}); 

因为您使用React.createClass而不是ES6类,所以您应该调用getInitialState()以初始化状态并将其传递给它。例如:

var Header = React.createClass({ 
    getInitialState: function() { 
     return { 
      title: this.props.title 
     }; 
    }, 
}); 

欢呼!