“react natif asyncstorage getitem” Réponses codées

Asyncstorage React Native

yarn add @react-native-async-storage/async-storage // install by yarn
npm i @react-native-async-storage/async-storage // install by npm

// import
import AsyncStorage from '@react-native-async-storage/async-storage';


await AsyncStorage.setItem('@storage_Key', "value") // for store item
await AsyncStorage.removeItem('@storage_Key', "value") // for remove item
Bored Buzzard

React Native Asyncstorage SetItem Exemple

setObjectValue = async (value) => {
  try {
    const jsonValue = JSON.stringify(value)
    await AsyncStorage.setItem('key', jsonValue)
  } catch(e) {
    // save error
  }

  console.log('Done.')
}
Puzzled Puffin

react natif asyncstorage getitem

static getItem(key: string, [callback]: ?(error: ?Error, result: ?string) => void): Promise
Puzzled Puffin

react natif asyncstorage setItem

static setItem(key: string, value: string, [callback]: ?(error: ?Error) => void): Promise
Puzzled Puffin

React Exemple Asyncstorage GetItem natif

getMyObject = async () => {
  try {
    const jsonValue = await AsyncStorage.getItem('@key')
    return jsonValue != null ? JSON.parse(jsonValue) : null
  } catch(e) {
    // read error
  }

  console.log('Done.')

}
Puzzled Puffin

Réponses similaires à “react natif asyncstorage getitem”

Questions similaires à “react natif asyncstorage getitem”

Plus de réponses similaires à “react natif asyncstorage getitem” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code