Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Native AsyncStorage getItem returns promise not value

I have a login form and I am able to post the form values. After the successful POST request, I get authentication token returned from the API. I need to save this token for future reference in local storage. For saving this auth token I am using AsyncStorage. I used AsyncStorage.setItem(STORAGE_KEY, responseData.auth_token); setItem method to save the data.

If I console log this by :

console.log(AsyncStorage.setItem(STORAGE_KEY));

it returns as promise object like this

    Promise {_45: 0, _81: 0, _65: null, _54: null}
_45
:
0
_54
:
null
_65
:
"efcc06f00eeec0b529b8"
_81
:
1
__proto__

: Object

how can I get the exact value from the AsyncStorage.getItem method?

This is my fetch method

fetch('http://54.255.201.241/drivers', {
    method: 'POST',
    headers: {
      'Accept': 'application/json',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      first_name: this.state.firstName,
      mobile_number: this.state.mobileNumber,
      vehicle_number: this.state.vehicleNumber,
      vehicle_type_id: 1,
    })
  }).then((response) => response.json()).then((responseData) => {
    if (JSON.stringify(responseData.mobile_number) == (this.state.mobileNumber))
    {
      AsyncStorage.setItem(STORAGE_KEY, responseData.auth_token);
      console.log(AsyncStorage.getItem(STORAGE_KEY));
      this.props.navigator.push({id: 'Otp'})
    }
    else
    {
      Alert.alert("SignUp Failed","Mobile number already taken.")  
    }
  })
  .done();

BTW in documentation they have used await. I tried using that but the pages are not loading.Here with attached the screenshot.enter image description here

like image 672
Mani kandan Avatar asked Sep 03 '16 14:09

Mani kandan


1 Answers

You have to call as

getUserToken().then(res => {
    console.log(res);
  });

Since this is an async call.

like image 101
Ankit Jayaprakash Avatar answered Oct 18 '22 04:10

Ankit Jayaprakash