我正在尝试从API获取记录但是当我使用下面的代码时它会返回不成功的响应。但与此同时,它给了我适当的回应,邮递员的状态代码为200。这是我的代码。请帮忙:
import React, {Component} from "react";
const urlEndPoint = myEndPoint => "https://api.github.com/users/adhishlal"
export default class Categories extends Component {
constructor(props) {
super(props)
this.state = {
requestFailed: false
}
}
componentDidMount() {
fetch(urlEndPoint(this.props.myEndPoint))
.then(response => {
if (!response.ok) {
throw Error(response.statusText)
}
return response
})
.then(d => response.json())
.then(response => {
this.setState({
responseData: d
})
}, () =>
{
this.setState({
requestFailed: true
})
})
}
render() {
//If request is failed
if(this.state.requestFailed)
{
return <div>Request Failed</div>
}
//Waiting for data to load from Zoho
if(!this.state.responseData)
{
return <div>Loading...</div>
}
//Finally populate the data when loaded
var indents = [];
for (var i = 0; i < 10; i++) {
indents.push(
<div className="col-sm-4 col-xs-12"><div className="cr-openings">
<p className="no-margin font-color-lightGrey no-of-openings">{i+1}</p><p className="catg-openings font-color-white">{this.state.responseData.name}</p>
<p className="font-color-lightGrey city-openings no-margin">Bangalore , Chennai , Delhi NCR , Hyderabad , Mumbai</p>
</div>
</div>
);
}
return (
<section className="dotted">
<div className="dotted-bg-dark">
<div className="container padding-80-0">
<div className="row m-b-30">
{indents}
</div>
</div>
</div>
</section>
);
}
}
你能说明我犯错的地方吗?您可以在restclient或邮递员中运行API以查看响应。
答案 0 :(得分:2)
我还没有完成您的代码,但会告诉您如何使用fetch获取数据。
fetch('https://api.github.com/users/adhishlal')
.then(response => {
response.json().then(function(data){
console.log(data);
})
代码中的data
将是您需要的数据。
fetch()请求的响应是一个Stream对象,这意味着当我们调用json()方法时,会返回一个Promise,因为流的读取将异步发生。
在我看来,使用axios会让生活变得更轻松。
希望这有帮助
答案 1 :(得分:0)
上面写的代码几乎没有错误。某些地方已返回不正确的值。类似地,setState是针对错误的变量完成的。修复这些将使它运行正常。
我已经更新了造成问题的代码
.then(d => d.json()) //Return d.json() and not response.json()
.then(response => {
this.setState({
responseData: response, //setState to response and not d
})
}, () =>