在呈现

时间:2018-05-23 18:18:04

标签: reactjs redux axios redux-thunk

我尝试映射获取的数据,但我总是在映射中出错,因为在使用map函数之前数据没有被提取。我可以通过点击事件从我获取的数据中获取特定元素。

enter image description here

我获取数据的父类,我需要啤酒数据来进行映射。

class App extends Component{


    constructor(props){
        super(props);
        this.props.fetchUser();
        this.props.fetchBeers();
    }

我尝试映射啤酒的课程:

class BeersLanding extends Component{



 getBeers = () => {
     let beers= this.props.beers;
     console.log(beers);
     console.log(beers[0]);
     console.log(beers[1]);

 }

 constructor(props){
     super(props);

 }

render(){

    const {loading} =this.props;


   console.log(this.props.beers)

    return(


        <div style={{textAlign:'center'}}>

           ...

                <input type="text" placeholder="Search.." name="search"></input>
                <button type="submit" onClick={() =>this.getBeers()} >Submit</button>

            <div className={'beersContainer'}>

                 {this.props.beers.map((beer,index) =>(
                    <div className={'card'}>
                    hello
                    </div>
                ))}  

            </div>
        </div>
    );
}

}

行动方法:

export const fetchBeers = () => async dispatch => {

    const res = await axios.get('/api/beers');
    dispatch({type:FETCH_BEERS, payload:res.data});
};

减速器:

export default function(state=null, action){

    // console.log(action);
    switch(action.type){
    case FETCH_BEERS:
        return action.payload; 

    default:
        return state;
    }
}

2 个答案:

答案 0 :(得分:1)

有两个选项可以解决这个问题,第一个选项和我建议使用它,使用defaultProps并将蜜蜂的默认值设置为数组。 在映射数据之前添加条件的第二个选项

{this.props.beers && this.props.beers.map((beer,index) =>(
                    <div className={'card'}>
                    hello
                    </div>
                ))}  

答案 1 :(得分:1)

我建议使用反应生命周期钩子来解决这类问题。

componentDidMount() {
    this.props.YOURACTIONS()
}

因此,在加载组件时会发生这种情况。