gpt4 book ai didi

javascript - 使用 javascript 检查特定的控制台错误是否发生/存在

转载 作者:行者123 更新时间:2023-11-29 19:25:04 25 4
gpt4 key购买 nike

我想检查是否使用 javascript 发生了某个控制台错误,如果发生了,我自己alert()

错误看起来像这样:

00:00:34:0359 TimeEvent.COMPLETE
(anonymous function) @ VM17617:1

算法看起来像这样:

function checkError(console) {
if(console.error === "TimeEvent.COMPLETE") {
alert("The error is present");
}
}

我对控制台不是很熟悉,也没有进一步了解 Google 研究。有人能指出我正确的方向吗?

最佳答案

我最终通过关注 this blog post 解决了我的问题关于使用 javascript 接管控制台。

这是我的最终代码:

var original = window.console
window.console = {
error: function(){

//Gets text from error message.
errorText = arguments['0'];

if (errorText.includes('TimeEvent.COMPLETE')) {
//DO STUFF HERE
}

original.error.apply(original, arguments)
}
}

关于javascript - 使用 javascript 检查特定的控制台错误是否发生/存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31106096/

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