Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Curso Fetch API aula Evento no formulário

Subi o código no github para melhor visualização. Mas, após fazer a aula de evento no formulário, não consegui fazer funcionar o evento de enviar os dados para a API e retornar na página de clientes. Alguém pode me ajudar por favor.

https://github.com/renanmciandt/FetchAPI-projeto

1 resposta
solução!

Galera consegui resolver, era uma coisa bem besta ;/

o código estava assim:

const cadastrarClientes = (nome, cpf) => {
    const json = JSON.stringify({
        nome: nome,
        cpf: cpf
    })
    return fetch('http://localhost:4000/clientes/cliente'), {
        method: 'POST',
        headers: {
            'Content-type': 'application/json'
        },
        body: json
    }
    .then(resp => {
        return resp.body
    })
}

aí só arrumei um ")" que estava fechando no lugar errado

const cadastrarClientes = (nome, cpf) => {
    const json = JSON.stringify({
        nome: nome,
        cpf: cpf
    })
    return fetch('http://localhost:4000/clientes/cliente', {
        method: 'POST',
        headers: {
            'Content-type': 'application/json'
        },
        body: json
    })
    .then(resp => {
        return resp.body
    })
}