4.4.life cycle
可分為實例化, 存在期, 銷毀&清理期:
class CustomizableText extends Component { constructor(props) { super(props); this.style = { }; } render() { return ( <Text style ={[this.props.style]} >Hello</Text> ) } }; CustomizableText.propTypes = { style: React.PropTypes.Text.isRequred, };
this.setState({ mykey:'my new value' });
reference:
Last updated