前言:
這是一個React Native的簡單存檔讀檔的簡單範例
在我買的三個有關的線上課程都是使用 AsyncStorage 這個套件
偏偏新的版本裡已經把 AsyncStorage 停用了...
Deprecated. Use one of the community packages instead.
如果還是想繼續用,請參考以下作法
安裝 async-storage 社群版 (官網已停用)
expo install @react-native-async-storage/async-storage
在程式中引入
import AsyncStorage from '@react-native-async-storage/async-storage';
以下就直接上程式碼了:
版本資訊:
react: 17.0.1
react-native: 0.64.3
expo: 44.0.0
成果圖:
程式碼:
2022/1/12 補充 source code
git clone https://smilehsu@bitbucket.org/smilehsu/rn_example_asyncstorage.git
Reference:
暫無