*// Creating An Array
const someArray = [1,2,3,4];
return AsyncStorage.setItem('somekey', JSON.stringify(someArray))
.then(json => console.log('success!'))
.catch(error => console.log('error!'));
//Reading An Array
return AsyncStorage.getItem('somekey')
.then(req => JSON.parse(req))
.then(json => console.log(json))
.catch(error => console.log('error!'));
*
如何更新数组的特定索引并删除索引
例如,新数组应该是 {1,A,3}
使用 AsyncStorage,最好将数据结构视为不可变。所以基本上,要执行更新,你抓住你想要的东西,但是弄乱它,然后把它放回同一个键下。
return AsyncStorage.getItem('somekey')
.then(req => JSON.parse(req))
.then(json => {
const temp = json;
temp[2] = 'A';
temp.pop(); // here it's [1, A, 2]
AsyncStorage.setItem('somekey', JSON.stringify(temp));
})
.catch(error => console.log('error!'));
然后要删除任何项目,只需执行 AsyncStorage.removeItem('somekey')
.没有直接的操作AsyncStorage
让你进行更深入的更新,只是一个键/值数据集。