该错误表明这
this.state.post.data是一个对象,因此您需要在渲染之前将其转换为字符串。用
JSON.stringify()
尝试
class Student extends React.Component{ constructor(props){ super(props); this.state={ post:[] } };componentDidMount(){ axios.get('http://localhost:8080/student') .then(data => this.setState({post:data})); } render(){ return(<div className="pre"><h1>{JSON.stringify(this.state.post.data)}</h1></div> ); }}


