Я хочу получить возвращенное значение «responseData», назначенное переменной данных
fetch('http://localhost:8080/users/update, {
method: 'PUT',
headers: {'Accept': 'application/json', 'Content-Type': 'application/json'},
body: JSON.stringify({
name:this.state.name,
Level:this.state.activity,
height:this.state.height,
weight:this.state.weight
})})
.then((response) => {
return response.json()
})
.then((responseData) => {
console.log(responseData)
this.setState({
data:responseData
})
}
);
Я возвращаю true, я просто хочу присвоить его переменной, которую я уже пытался использовать
this.setState({
data:responseData
})
Но это не сработало