私は問題は値がまだnullであると思う私は値を設定する必要があるが、私は方法を知らない。このエリアで私のAPIを読むことができますが、私はreact.jsで出力することができません
constructor() {
super();
this.state = {
jsonReturnedValue: null
}
}
私は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に設定する結果を確認することができます –