我有通过 rest api 获取数据的反应代码,但我无法显示 JSon 数据。请找到下面的代码
从“反应”导入反应;
import axios from 'axios';
export default class PersonList extends React.Component {
state = {
d: []
}
componentDidMount() {
axios.get(`http://localhost:8080/login/?username=abc&password=welcome1`)
.then(res => {
const d = res.data;
this.setState({ d });
})
}
render() {
return (
<ul>
{ this.state.d}
</ul>
)
}
}
炎炎设计
慕田峪4524236
富国沪深
相关分类