React Native AsyncStorage storing values other than strings

前端 未结 6 1583
花落未央
花落未央 2021-01-03 17:46

Is there any way to store values other than strings with AsyncStorage? I want to store simple boolean values for example.

AsyncStorage.setItem(\'key\', \'ok\         


        
相关标签:
6条回答
  • 2021-01-03 18:02

    I suggest you use react-native-easy-app, through which you can access AsyncStorage synchronously, and can also store and retrieve objects, strings or boolean data.

    import { XStorage } from 'react-native-easy-app';
    import { AsyncStorage } from 'react-native';
    
    export const RNStorage = {// RNStorage : custom data store object
         token: undefined, // string type
         isShow: undefined, // bool type
         userInfo: undefined, // object type
     };   
    
    const initCallback = () => {
    
         // From now on, you can write or read the variables in RNStorage synchronously
    
         // equal to [console.log(await AsyncStorage.getItem('isShow'))]
         console.log(RNStorage.isShow); 
    
         // equal to [ await AsyncStorage.setItem('token',TOKEN1343DN23IDD3PJ2DBF3==') ]
         RNStorage.token = 'TOKEN1343DN23IDD3PJ2DBF3=='; 
    
         // equal to [ await AsyncStorage.setItem('userInfo',JSON.stringify({ name:'rufeng', age:30})) ]
         RNStorage.userInfo = {name: 'rufeng', age: 30}; 
    };
    
    XStorage.initStorage(RNStorage, AsyncStorage, initCallback); 
    
    0 讨论(0)
  • 2021-01-03 18:03

    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-string
    AsyncStorage.setItem('key', JSON.stringify(false))
    
    // Retrieves from storage as boolean
    AsyncStorage.getItem('key', (err, value) => {
        if (err) {
            console.log(err)
        } else {
            JSON.parse(value) // boolean false
        }
    })
    
    0 讨论(0)
  • 2021-01-03 18:05

    I always use/create a wrapper modulee around AsyncStorage, utilising JSON.parse & JSON.stringify on the data coming in and out.

    This way you remove the need to have you JSON.parse & JSON.stringify calls inside your business logic. This keeps the code a bit nicer on the eye.

    Something like

    import AsyncStorage from "@react-native-community/async-storage";
    
    export const Storage {
    
        getItem: async (key) => {
            try {
                 let result = await AsyncStorage.getItem(key);
                 return JSON.parse(result);
            } 
            catch (e) {
                 throw e;
            } 
        },
    
        setItem: async (key, value) => {
    
            try {
                const item = JSON.stringify(value);
    
                return await AsyncStorage.setItem(key, item);
            } catch (e) {
                throw e;
            }
        }
    }
    
    // usage
    
    async function usage () {
    
        const isLeeCool = true;
        const someObject = { name: "Dave" };
        const someArray = ["Lee", "Is", "Cool."];
    
        try {
            // Note Async storage has a method where you can set multiple values,
            // that'd be a better bet here (adding it to the wrapper).
            await Storage.setItem("leeIsCool", leeIsCool);
            await Storage.setItem("someObject", someObject);
            await Storage.setItem("someArray", someArray);
        }  catch (e) {}
    
        // Some point later that day...
    
        try {
    
            console.log(await Storage.getItem("leeIsCool"));
            console.log(await Storage.getItem("someObject"));
            console.log(await Storage.getItem("someArray"));
        }  catch (e) {}
    }
    
    0 讨论(0)
  • 2021-01-03 18:11

    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'
    
    0 讨论(0)
  • 2021-01-03 18:21

    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-string
    AsyncStorage.setItem('someBoolean', JSON.stringify(false))
    
    // Retrieves from storage as boolean
    AsyncStorage.getItem('someBoolean', function (err, value) {
        JSON.parse(value) // boolean false
    }
    
    // Or if you prefer using Promises
    AsyncStorage.getItem('someBoolean')
        .then( function (value) {
            JSON.parse(value) // boolean false
        })
    
    
    // Or if you prefer using the await syntax
    JSON.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.

    0 讨论(0)
  • 2021-01-03 18:24
     await AsyncStorage.setItem('saveUserCredential', JSON.stringify(true/false), () => {
            console.log("saveUserCredential save details " +flag);
     });
    
    
    
      AsyncStorage.getItem('saveUserCredential').then(async (value) => {
                   let userLogin = await JSON.parse(value);
    
                   if(userLogin ){
                       this.props.navigation.navigate("HomeScreen");
                   }else {
                      this.props.navigation.navigate("LoginScreen");
                   }
               });
    
    0 讨论(0)
提交回复
热议问题