如何console.log http响应?

时间:2018-10-05 14:40:20

标签: javascript async-await

我正在通过get调用使用以下异步等待。如果有错误,服务器还会发送响应,即文本消息。您可以在网络标签中看到短信。我该如何控制台记录该消息,因为它不是catch块中错误的一部分。

callServer = async () => {
    const path = '...';
    try {
      await axios.get(path);
      console.log('successful');
    } catch (error) {
      console.log(error);
    }
  };

1 个答案:

答案 0 :(得分:2)

axios的默认值为:

console.log(error.response.data);

但这取决于您如何配置axios。

提示
使用console.dir(error)查看错误变量中的内容。