React Native AsyncStorage不覆盖数据

时间:2019-03-22 08:17:22

标签: arrays react-native object mobile asyncstorage

我正在尝试制作一个应用,并且我在数组中使用AsyncStorage来存储一些对象。我需要更改对象的一个​​元素,但是如果尝试更改它,它不会保留这些更改。

我的代码:

save = async () => {
this.state.dataSource.notes = this.state.text;
try {
  AsyncStorage.clear();
  await AsyncStorage.setItem('medicines', JSON.stringify(this.state.dataSource));
} catch (error) {
  console.log('error');
}
this.setModalVisible(!this.state.modalVisible);

this.state.text存储文本输入的值。

this.state.dataSource存储对象数组。

这两种方法都应按其应有的方式进行。

该数组如下所示:

Array = [
item = {
    id: 'id',
    name: 'name',
    brand: 'brand',
    inname: 'inname',
    chosenWeekDay: 'week day',
    androidDate: 'date for android',
    chosenAndroidTime: 'time for android',
    notes: 'notes in a string',
  }]

2 个答案:

答案 0 :(得分:0)

您需要在dataSource数组中定位特定对象

let { dataSource, text } = this.state;
const yourSpecfiicIndex = 12; // whatever
dataSource[yourSpecfiicIndex].notes = text;

//...

await AsyncStorage.setItem('medicines', JSON.stringify(dataSource));

答案 1 :(得分:0)

我找到了解决方法:

save = async () => {
  this.changeNotes(this.state.id, this.state.text);
  try {
    AsyncStorage.clear();
    await AsyncStorage.setItem('medicines', JSON.stringify(this.state.dataSource));
  } catch (error) {
    console.log('error');
  }
  this.setModalVisible(!this.state.modalVisible);
}


 changeNotes( value, note ) {
  for (var i in this.state.dataSource) {
    if (this.state.dataSource[i].id == value) {
      this.state.dataSource[i].notes = note;
      break;
     }
   }
 }