Я должен отправить измененные данные в API, который имеет формат json, как показано ниже:
{
"Customer": {
"name": "ABC",
"email": ABC@gmail.com,
"password": ""
},
"access": true,
"time": 2000
}
При сохранении я хочу установить соответствующее состояние для полей API.
save=()=>{
let newCustomer={
access:this.state.access,
time:this.state.time,
name: //How can i set the state values for name,email and
password which is in nested form?
email:
password:
}
return axios.put('api',newCustomer)
.then(response => {
})
}