Getting Error in Console:Failed to Load Resource: Net::Err_Connection_Reset

Getting error in console : Failed to load resource: net::ERR_CONNECTION_RESET

I think you are using chrome.
The problem is the certificate mismatch or the expiration of the certificate.Check your certificate properly.

Just visit here for more information.

Failed to load resource: net::ERR_CONNECTION_RESET And backend side Error: Illegal arguments: undefined, string

You appear to be posting the string "user" and not the object user from your incoming variable.

this:

return this.http.post('http://localhost:3000/users/register','user', {headers: headers})

should be this:

return this.http.post('http://localhost:3000/users/register', user, {headers: headers})


Related Topics



Leave a reply



Submit