“AsyncStorage” Respostas de código

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

npx expo install @react-native-async-storage/async-storage
Frantic Flatworm

reaja o armazenamento nativo

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

Respostas semelhantes a “AsyncStorage”

Procure respostas de código populares por idioma

Procurar outros idiomas de código