我認爲問題是值仍然爲空我需要設置值,但我不知道如何。我的API可以讀取,但我不能輸出react.js
constructor() {
super();
this.state = {
jsonReturnedValue: null
}
}
在這方面我設置了一個空值和
試圖獲取到我的反應,但是當我運行它只有「員工列表」可以看出
fetch("http://localhost:5118/api/employeedetails/getemployeedetails")
.then(handleErrors)
.then(response => response.json()) .then(json => {
this.setState({ jsonReturnedValue: response.results });
}).catch(function(error) {
console.log(error);
});
}
}
render() {
return(
<div>
<h1> Listof Employees </h1>
<h1>{ this.state.jsonReturnedValue }</h1>
</div>
沒有獲得響應你。然後,但json,console.log(json)在.then回調,然後你可以看到你想要設置爲jsonReturnedValue –