我从服务器接收数据作为 json 数据但无法在浏览器上显示它我收到错误
" 对象作为 React 子对象无效(发现:对象带有键 {_id, Id, Name, Age})。如果您打算渲染子对象集合,请改用数组或使用 createFragment(object) from 包装对象React 附加组件。检查学生中的渲染方法”
import React from 'react';
import axios from 'axios';
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>{this.state.post.data}</h1>
</div>
);
}
}
export default Student;