使用localstorage在React或React Native中仅显示一次组件

时间:2017-06-09 11:24:06

标签: javascript reactjs react-native local-storage asyncstorage

我有以下情况,我试图只使用localstorge显示一次屏幕组件而且只显示一次。这个让我精神振奋。

App.js

...

constructor(props) {
    super(props);
    this.state = {
      isLoading: false,
    };
  }

  componentDidMount() {
    if (AsyncStorage.getItem('key')) {
      AsyncStorage.getItem('key', (value) => {
        this.setState({isLoading: value})
        Alert.alert(JSON.stringify(value))
      });
      AsyncStorage.setItem('key', JSON.stringify(true))
    }
  }

  render() {
    if (!this.state.isLoading) {
      return <Search />
    }
    return <Root />
    }

... 

3 个答案:

答案 0 :(得分:1)

您需要稍微修改componentDidMount实现并向组件的状态添加另一个标志

constructor() {
   ...
   this.state = {
      isLoaded: false,
      wasShown: false
   }
}

componentDidMount() {
   AsyncStorage.getItem('key') // get key
     .then(wasShown => {
         if(wasShown === null) { // first time 
           // we need to save key for the next time
           AsyncStorage.setItem('key', '"true"')
         }

         this.setState({isLoaded: true, wasShown})
      })
  }

render() {
  const { isLoaded, wasShown } = this.state

  // you can't tell if this component was shown or not render nothing
  if(!isLoaded) { return null }

  if(!wasShown) {
    return <Search />
  } 

  return <Root/>
}

顺便说一句,如果您对babel预设包含async / await支持,则可以使此代码更简单

async componentDidMount() {
   const wasShown = await AsyncStorage.getItem('key') // get key

   if(wasShown === null) {
     await AsyncStorage.setItem('key', '"true"')
   }

   this.setState({isLoaded: true, wasShown}
  }

答案 1 :(得分:0)

在检查存储空间的价值时显示其他内容。获得值后,只需设置状态并显示您的屏幕。换句话说,只有在确定尚未显示屏幕后才应打开屏幕组件。

答案 2 :(得分:0)

AsyncStorage.getItem('isShown').then((value) => {
      if(value == null){
        // Whatever you want to do just once.
        AsyncStorage.setItem('isShown', 'sth');
      }
    });