Estou recebendo esse erro ao tentar enviar informações para o meu login.
Minha função está da seguinte maneira
efetuaLogin() {
const uri = "http://localhost:8080/api/public/login";
const requestInfo = {
method: 'POST',
body: JSON.stringify({
login: this.state.usuario,
senha: this.state.senha
}),
headers: new Headers({
'Content-type': 'application/json'
})
};
fetch(uri, requestInfo)
.then(response => {
if (response.ok)
return response.text();
throw new Error('Não foi possível efetuar login');
})
.then(token => console.warn(token));
}