[React Native] Local Storage 대신 Async Storage 사용하기
2024. 5. 24. 22:24
프로그래밍/React Native
AsyncStorage란?React Native에서 LocalStorage 대신 사용하는 저장소비동기로 key-value 저장하여 사용함설치npm install @react-native-async-storage/async-storageORyarn add @react-native-async-storage/async-storage 사용 방법1. AsyncStorage를 호출하여 Key-Value를 저장 - AsyncStorage.setItem(key, value);2. AsyncStorage를 Key값으로 호출하여 Value 불러오기 - AsyncStorage.getItem(key);사용 시에는 항상 비동기 식으로 호출해야 함 예시 코드import AsyncStorage from '@react-native..