我正在考虑如何在编写的文档中使用React-native AsyncStorage multiGet:
AsyncStorage.multiGet(keys, (err, stores) => {
但这些键应该如何正常?以下是它们在我的应用程序中的设置方式:
AsyncStorage.multiSet([['@BarcodeList', JSON.stringify(scanedList)], ['@ScannedBarcode', gotCode]]);
没关系,但我如何使用multiGet检索数据?使用getItem似乎工作,我做错了什么?它们都是(getItem,multiGet)。
AsyncStorage.multiGet(["@BarcodeList", "@ScannedBarcode"]).then((scanedList2, scannedBarcode) => {
//AsyncStorage.getItem("@BarcodeList").then((scanedList2) => {
答案 0 :(得分:16)
它的工作方式如下,因为它提供了嵌套数组响应
数组包含键为index 0
,值为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
})