11

Here's my code:

async [types.GET_DATA]({commit, state}, data) {
    try {
        const res = await axios.post('/login', {
            email: data.email,
            password: data.password,
        });
        console.log(res)
    } catch(e) {
        if(e.response) {
            console.log(e.response)
        }
    }
}

So, I return 400 Bad Request whenever user sends empty fields. What axios does is throws the error along with the error response. What I need to do is remove that console error message and only get the error response.

How can I do it?

Axel
  • 4,365
  • 11
  • 63
  • 122

3 Answers3

2

It is actually impossible to do with JavaScript. This is due to security concerns and a potential for a script to hide its activity from the user.

The best you can do is hide them from only your console.

ierdna
  • 5,753
  • 7
  • 50
  • 84
0

If there is an error you can catch it like this:

axios.get("https://google.com").then(response => {
  console.log("Done");
}).catch(err => {
  console.log("Error");
})
fir4tozden
  • 63
  • 6
0
async [types.GET_DATA]({commit, state}, data) {
    try {
        const res = await axios.post('/login', {
            email: data.email,
            password: data.password
        });
        console.log(res)
    } catch(err) {
            console.log(err)
    }
}
Leonardo Alves Machado
  • 2,747
  • 10
  • 38
  • 53
  • 1
    Just as a heads up, this will log on `err` the body of the request (e.g. if it gives a 401) which would expose to the logs the email and password. – fsschmitt Jun 21 '22 at 09:05