“Asyncstorage React Native” Kod odpowiedzi

AsyncStorage.getallkeys

importData = async () => {
  try {
    const keys = await AsyncStorage.getAllKeys();
    const result = await AsyncStorage.multiGet(keys);

    return result.map(req => JSON.parse(req)).forEach(console.log);
  } catch (error) {
    console.error(error)
  }
}
Dark Dormouse

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 TypeScript

npx react-native init MyApp --template react-native-template-typescript
Friendly Finch

Jak zainstalować asyncstorage w React Native

npm i @react-native-community/async-storage
Wicked Wren

Pobierz dane z Asyncstorage React Native

let user = await AsyncStorage. getItem('user');
let parsed = JSON. parse(user);
Dark Dormouse

React Native Storage

npm install react-native-storage
npm install @react-native-community/async-storage
Wandering Wren

Odpowiedzi podobne do “Asyncstorage React Native”

Pytania podobne do “Asyncstorage React Native”

Więcej pokrewnych odpowiedzi na “Asyncstorage React Native” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu