6

我有一个AsyncStorage像这样存储的用户:

// data has a few key/value pairs for the user object
AsyncStorage.setItem('user', JSON.stringify(data));

其中一个键/值对的data值为question_count10

当用户删除一个问题时,我怎样才能将question_count值减 1,AsyncStorage所以值是9

这是我尝试过的:

AsyncStorage.getItem('user').then(data => {
    data.question_count--;
});

但这不会改变价值。知道如何做到这一点吗?

4

1 回答 1

23

您应该在递减后再次保存该值。

AsyncStorage.getItem( 'user' )
    .then( data => {

      // the string value read from AsyncStorage has been assigned to data
      console.log( data );

      // transform it back to an object
      data = JSON.parse( data );
      console.log( data );

      // Decrement
      data.question_count--;
      console.log( data );

      //save the value to AsyncStorage again
      AsyncStorage.setItem( 'user', JSON.stringify( data ) );

    }).done();
于 2016-09-14T06:51:47.567 回答