Olá, boa tarde.
Estou tentando fazer um POST usando onSubmit e tomo o seguinte: TypeError: cyclic object value e o que está grifado é " 39 | body: JSON.stringify(data)"
Segue também o trecho do código referente ao onSubmit:
onSubmit = data => {
console.log(this.state.dados);
fetch("http://localhost/projeto_imoveis/api/adm/clientes", {
method: "POST",
body: JSON.stringify(data),
headers: {
"Content-Type": "application/json"
}
})
.then(response => {
if (response.status >= 200 && response.status < 300) {
return response;
} else {
console.log("Alguma coisa deu errado!");
}
})
.catch(err => err);
};
Se alguém tiver alguma ideia já vai me dar uma baita ajuda!