如何检测react-native中的首次启动

前端之家收集整理的这篇文章主要介绍了如何检测react-native中的首次启动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有什么方法可以检测反应原生应用程序的首次启动和初始启动,以显示入门/介绍屏幕?
你的逻辑应该遵循这个:
  1. class MyStartingComponent extends React.Component {
  2. constructor(){
  3. super();
  4. this.state = {firstLaunch: null};
  5. }
  6. componentDidMount(){
  7. AsyncStorage.getItem("alreadyLaunched").then(value => {
  8. if(value == null){
  9. AsyncStorage.setItem('alreadyLaunched',true); // No need to wait for `setItem` to finish,although you might want to handle errors
  10. this.setState({firstLaunch: true});
  11. }
  12. else{
  13. this.setState({firstLaunch: false});
  14. }}) // Add some error handling,also you can simply do this.setState({fistLaunch: value == null})
  15. }
  16. render(){
  17. if(this.state.firstLaunch === null){
  18. return null; // This is the 'tricky' part: The query to AsyncStorage is not finished,but we have to present something to the user. Null will just render nothing,so you can also put a placeholder of some sort,but effectively the interval between the first mount and AsyncStorage retrieving your data won't be noticeable to the user.
  19. }else if(this.state.firstLaunch == true){
  20. return <FirstLaunchComponent/>
  21. }else{
  22. return <NotFirstLaunchComponent/>
  23. }
  24. }

希望能帮助到你

猜你在找的React相关文章