How to retrieve data with AsyncStorage multiGet in React Native

后端 未结 1 1055
小蘑菇
小蘑菇 2020-12-17 22:17

I\'m considering how to use React-native AsyncStorage multiGet in docs written:

AsyncStorage.multiGet(keys, (err, stores) => {

But how t

相关标签:
1条回答
  • 2020-12-17 22:57

    It works the following way, since it gives nested array response

    The array contains key as index 0 and value as index 1

     AsyncStorage.multiGet(["@BarcodeList", "@ScannedBarcode"]).then(response => {
                console.log(response[0][0]) // Key1
                console.log(response[0][1]) // Value1
                console.log(response[1][0]) // Key2
                console.log(response[1][1]) // Value2
            })
    
    0 讨论(0)
提交回复
热议问题