Closed heehminh closed 9 months ago
์น์ ๊ฐ๋ฐํ ๋ ๋ฐ์ดํฐ๋ฅผ ๊ฐ๋จํ๊ฒ ์๊ตฌ์ ์ผ๋ก (?) ์ ์ฅํ๋ ค๋ฉด Local Storage๋ฅผ ์ฌ์ฉํ๋๋ฐ, ์ฑ์ ๊ฐ๋ฐํ ๋๋ AsyncStorage๋ฅผ ์ฌ์ฉํ ์ ์๋ค. ๋ณดํต ์ ์ ์ ๋ณด๋ ํ ํฐ๋ค์ ์ ์ฅํ๋๋ฐ ์ฌ์ฉ๋๋ค.
npm install @react-native-async-storage/async-storage
react-native-async-storage docs
const storeData = async (value) => {
try {
await AsyncStorage.setItem('@storage_Key', value)
} catch (e) {
// saving error
}
}
const storeData = async (value) => {
try {
const jsonValue = JSON.stringfy(value)
await AsyncStorage.setItem('@storage_Key', jsonValue)
} catch (e) {
// saving error
}
}
๐ Description
AsyncStorage ์ฌ์ฉ๋ฒ ๋ฆฌ์์น
๐ Goal
$\tiny{๊ตฌ์ฒด์ ์ธ\ ์ฐ์ถ๋ฌผ์\ ํฌํจํ\ ๋ชฉํ๋ฅผ\ ์์ฑํด์ฃผ์ธ์.}$
โ๏ธ Todo
$\tiny{๋ชฉํ\ ๋ฌ์ฑ์\ ์ํด\ ํด์ผํ \ ์ผ์\ ์ธ๋ถ์ ์ผ๋ก\ ์์ฑํด์ฃผ์ธ์.}$