我正在我的componentDidMount内部进行提取,如下所示
componentDidMount() {
fetch('https://cors-anywhere.herokuapp.com/http://api.plos.org/search?q=title:DNA', {
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Credentials": true,
}
})
.then(response => response.json())
.then((data)=>{
console.log(data);
});
}
我的控制台输出数据如下
{response: {…}}
response:
docs: (10) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
maxScore: 6.3768473
numFound: 5026
start: 0
__proto__: Object
__proto__: Object
我想在这里访问docs数组。我已经尝试过console.log(data.docs);
,但它返回的是未定义的。我在这里做什么错了?
答案 0 :(得分:2)
您应该尝试=>
console.log(data.response.docs);