React Native AsyncStorage storing values other than strings React Native AsyncStorage storing values other than strings ios ios

React Native AsyncStorage storing values other than strings


Based on the AsyncStorage React-native docs, I'm afraid you can only store strings..

static setItem(key: string, value: string, callback?: ?(error: ?Error)> => void) 

Sets value for key and calls callback on completion, along with an Error if there is any. Returns a Promise object.

You might want to try and have a look at third party packages. Maybe this one.

Edit 02/11/2016

Thanks @Stinodes for the trick.

Although you can only store strings, you can also stringify objects and arrays with JSON to store them, then parse them again after retrieving them.

This will only work properly with plain Object-instances or arrays, though, Objects inheriting from any prototypes might cause unexpected issues.

An example :

// Saves to storage as a JSON-stringAsyncStorage.setItem('key', JSON.stringify(false))// Retrieves from storage as booleanAsyncStorage.getItem('key', (err, value) => {    if (err) {        console.log(err)    } else {        JSON.parse(value) // boolean false    }})


You can only store strings, but you can totally stringify objects and arrays with JSON, and parse them again when pulling them out of local storage.
This will only work properly with plain Object-instances or arrays, though.

Objects inheriting from any prototype might cause some unexpected behaviour, as prototypes won't be parsed to JSON.

Booleans (or any primitive for that matter) can be stored using JSON.stringify, though.
JSON recognises these types, and can parse them both ways.

JSON.stringify(false) // "false"JSON.parse("false")   // false

So:

// Saves to storage as a JSON-stringAsyncStorage.setItem('someBoolean', JSON.stringify(false))// Retrieves from storage as booleanAsyncStorage.getItem('someBoolean', function (err, value) {    JSON.parse(value) // boolean false}// Or if you prefer using PromisesAsyncStorage.getItem('someBoolean')    .then( function (value) {        JSON.parse(value) // boolean false    })// Or if you prefer using the await syntaxJSON.parse(await AsyncStorage.getItem('someBoolean')) // boolean false

After getting and parsing the value (which does not have to be a boolean, it can be an object. Whichever satisfies your needs), you can set in to the state or do whatever with it.


I have set value in "name" key in AsyncStorage

AsyncStorage.setItem("name", "Hello");

To get value from key "name"

AsyncStorage.getItem("name").then((value) => {   console.log("Get Value >> ", value);}).done();

Output will be as follows:

'Get Values >> ', 'Hello'