从AsyncStorage返回的React-Native视图

时间:2019-02-10 09:22:48

标签: react-native react-native-android

我正在尝试从AsyncStorage呈现卡列表。我要做的是从存储中获取所有数据,并根据此数据创建卡列表。我可以在函数中看到存储数据,但无法返回视图。这就是我所做的。

import {View,AsyncStorage} from "react-native";
import { Container, Header, Content, Card, CardItem, Text, Body, Icon, Fab } 
from "native-base";


export default class extends Component{

 async _retrieveData(){
    const value = await AsyncStorage.getAllKeys();
    return value;
 };

 getAll(){
   this._retrieveData()
     .then(items =>{
       items.map(async (k) => {
         await AsyncStorage.getItem(k).then(ok => {

           var cards = [];

             cards.push(

               <Card key="">
                 <CardItem>
                   <Body>
                     <Text>
                       ok data
                     </Text>
                   </Body>
                 </CardItem>
               </Card>

             )
           return cards;

         });
       });

     })
     .catch(err =>{
       alert(err);
     });
   };


   render(){

       return(
         <Container>
           <Content padder>
           {this.getAll()}
           </Content>
         </Container>
       )
   }
}

1 个答案:

答案 0 :(得分:1)

您不能在render方法中调用getAll函数,因为它需要答应解决。

您可以在componenDidMount方法中调用相同的函数,将卡保存到本地状态,然后在渲染方法中渲染该数据。