“Reagieren Sie native asyncstorage getItem” Code-Antworten

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

Reagieren Sie das native Asyncstorage -SetItem -Beispiel

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

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

Reagieren Sie native asyncstorage getItem

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

Reagieren Sie native asyncstorage setItem

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

Reagieren Sie native Asyncstorage GetItem -Beispiel

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

Ähnliche Antworten wie “Reagieren Sie native asyncstorage getItem”

Fragen ähnlich wie “Reagieren Sie native asyncstorage getItem”

Weitere verwandte Antworten zu “Reagieren Sie native asyncstorage getItem” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen