Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

272
Vistas
React Native - Call Async Function From Another Component To Store and Get Data

I'm trying to call an async function to store and get data that I fetch from an API. The user is supposed to get a token on the login screen, and the token will be shown on the home screen. But the token is not shown in the console when the user presses the button on the home screen link.js

export const SET_USER_AUTH = async ({accessToken, tokenType, expiresAt}) => {
    try {
        await AsyncStorage.setItem('@access_token', accessToken);
        await AsyncStorage.setItem('@token_type', tokenType);
        await AsyncStorage.setItem('@expires_at', expiresAt);
        await AsyncStorage.setItem('@user_auth', tokenType + " " + accessToken);
        console.log("Done SET_USER_AUTH");
    } catch(e) {
    // read error
    }
};

export const GET_USER_AUTH = async () => {
    try {
        const accessToken = await AsyncStorage.getItem('@access_token');
        const tokenType = await AsyncStorage.getItem('@token_type');
        const expiresAt = await AsyncStorage.getItem('@expires_at');
        const userVer = await AsyncStorage.getItem('@user_auth');
        console.log("Done GET_USER_AUTH");
    } catch(e) {
    // read error
    }
};
    

Home.js

return (
        <Button onPress={() => console.log(GET_USER_AUTH.userVer)}/>
    );
about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda