我从App js页面做出响应,我在其中调用Django Rest API,并以数组的形式获取响应,现在该数组具有嵌套组件,并且我希望在我的代码中列出该嵌套组件。
如果当我尝试使用多个人的名字时,如果我可以展示由单人名字给出的单条记录,则会出现以下错误。 警告:数组或迭代器中的每个子代均应具有唯一的“键”道具。
现在,如果我按以下方式更改API URL https://e2isaop.rokuapp.com/api/perns/1
我可以查看HTML中的数据,但是当涉及到所有人时,它都会失败。
对不起,我是新来的人,不知道如何遍历子数组结果。 请在这里指导我以获得最佳实践。
这是JSON中的API响应
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"uri": "/api/Persons/1",
"PersonId": 1,
"PersonName": "Nirav Joshi",
"Person_Image": "https://ja.amazonaws.com/media/persons/None/51e1257926f3cb184089c41fa54b8f8e1b65a98f1e35d39e55f2b6b335e83cf4.jpg",
"Person_sex": "M",
"Person_BDate": "2019-04-19",
"Person_CDate": "2019-04-23"
},
{
"uri": "/api/Persons/2",
"PersonId": 2,
"PersonName": "New Joshi",
"Person_Image": "https://ja.amazonaws.com/media/persons/None/cc08baaad2ccc918bc87e14cac01032bade23a0733b4e313088d61ee78d77d64.jpg",
"Person_sex": "F",
"Person_BDate": "2011-11-21",
"Person_CDate": "2019-04-27"
},
]
}
这是React App.js代码。
import React from "react";
import ReactDOM from "react-dom";
import Persons from "./Persons";
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
persons: []
};
}
componentDidMount() {
fetch("https://e2isen.okuapp.com/api/psons/")
.then(response => response.json())
.then(data => {
let apipersons;
if (data.isNull) {
apipersons = [];
} else {
apipersons = [data];
console.log(apipersons);
}
this.setState({ persons: apipersons });
});
}
render() {
return (
<div>
<h1>Welcome to PersonAPI</h1>
<div>
{this.state.persons.map(pers => {
return (
<Persons
PersonName={pers.PersonName}
key={pers.PersonId}
Person_Image={pers.Person_Image}
Person_BDate={pers.Person_BDate}
Person_sex={pers.Person_sex}
/>
);
})}
</div>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById("root"));
应该给我四个人的结果及其详细信息 人名 人像 约会者 性爱
答案 0 :(得分:2)
您应该这样做:
// apipersons = [data];
apipersons = data.results