gpt4 book ai didi

javascript - 在最近的 Google Chrome 中访问错误对象 (43.0.2357.65 m)

转载 作者:行者123 更新时间:2023-12-03 10:06:23 25 4
gpt4 key购买 nike

我刚刚更新到 Google Chrome 43.0.2357.65,并正在编写 Javascript 代码来将错误记录到控制台;像这样:

try { ...} // raise some error
catch(e) {console.log(e); ...}

我过去曾使用它来记录错误对象并检查其属性。现在,我看到的只是堆栈跟踪,无法访问 Error 对象本身。这是有意的行为吗?有什么方法可以检查控制台中的错误对象吗?

最佳答案

我不知道这是否是预期的行为,但我已经能够重现差异,快速修复方法是使用 console.dir 函数。 console.dir 是一个很棒的函数,它总是作为对象显示在控制台上,即使您执行类似 console.dir("a string") 的操作.

Displays an interactive list of the properties of the specified JavaScript object. The output is presented as a hierarchical listing with disclosure triangles that let you see the contents of child objects.

来源:https://developer.mozilla.org/en-US/docs/Web/API/Console/dir

关于javascript - 在最近的 Google Chrome 中访问错误对象 (43.0.2357.65 m),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30337051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com