在axios GET请求中获取空对象

时间:2018-01-28 00:29:27

标签: javascript reactjs get typeerror axios

我正在从WordPress博客网站上发帖子。但是当我在posts中控制日志状态response.then()时,Responseempty object [object object]stateundefined

我哪里错了?

我也遇到以下错误:

  

TypeError:无法读取属性' map'未定义的

代码:

import React, {Component} from 'react';
import axios from 'axios';
import Post from './Post/Post';

class Blog extends Component {

    state = {
        posts: []
    }

    componentDidMount(){
        axios.get("https://public-api.wordpress.com/rest/v1.1/sites/ishhaanpatel.wordpress.com/posts")
        .then( response => {
            this.setState({posts: response.posts});
            console.log("Here are the posts: "+ this.state.posts);
            console.log("Here is the response: "+ response);

        });
    }

    render(){
         const posts = this.state.posts.map( post => {
             return <Post title={post.title} key={post.ID} author={post.author.name}  />;
         });
        return (
            <div>
                {posts}
            </div>
        );
    }
}

export default Blog;

2 个答案:

答案 0 :(得分:2)

您遇到asyncronous的问题。

setStateasync。因此,您不会立即获得this.state.posts中的值。

要解决此问题,您可以按如下方式使用回调:

this.setState({ posts: response.posts }, () => {
    console.log(this.state.posts);
});

此外,您的帖子也嵌套在response.data中。因此,您的setState应该类似于:

this.setState({ posts: response.data.posts }, () => {
    console.log(this.state.posts);
});

答案 1 :(得分:1)

您的数据嵌套在response.data对象中。

更新

this.setState({posts: response.posts});

this.setState({posts: response.data.posts});

Axios返回一个HTTP响应对象,其中包含有关响应的其他信息。