gpt4 book ai didi

javascript - 未处理的 JavaScript 异常终止 MSAppHost/WWAHost.exe

转载 作者:行者123 更新时间:2023-11-27 23:02:44 28 4
gpt4 key购买 nike

<!DOCTYPE html>
<html>
<head>
<title>Throw test</title>
</head>
<body>
<button onclick="throw 'does this abort the app'">CRASH</button>
</body>
</html>

此代码作为通用 Windows 应用程序 (MSAppHost/3.0) (WWAHost.exe) 运行时会终止该应用程序(退出代码 0x3)。有没有办法阻止这种行为?

我尝试添加一个窗口 onerror 处理程序,它不会阻止应用程序终止。

window.onerror = function(e) { return false; }

编辑这是一个基于 Cordova 的 Windows 10 移动项目,运行现有的 html5 应用程序。必须在每个事件处理程序周围添加 try catch 将是一项令人难以置信的工作量。

编辑在 JavaScript 中,异常应该仅中止事件的执行上下文,而不是整个应用程序。

最佳答案

Is there a way to prevent this behaviour?

防止此行为的最佳方法是处理异常。全局异常处理程序通常不受欢迎,除了可能记录错误之外,因为它们不可能处理所有可能的异常,并且只会导致应用程序最终处于未知状态。

如果您无法在相关的地方以可靠的方式处理异常,则意味着您不知道问题是什么,并且您的应用程序可能会由于未知状态而开始以其他方式失败 - 此时点它可能会完全停止运行。

<小时/>

尽管如此,在 HTML 中,您可以从 onerror 处理程序返回 true 而不是 false 以防止异常进一步冒泡。例如,这将在控制台中记录错误,但不显示 Uncaught Error :

$('button').click(function() {
console.log('a');
throw "oops";
console.log('b');
});
window.onerror = function(e) {
console.log('error', e);
return true;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button>
test
</button>

但这都会记录错误,然后显示 Uncaught Error :

$('button').click(function() {
console.log('a');
throw "oops";
console.log('b');
});
window.onerror = function(e) {
console.log('error', e);
//don't return true
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button>
test
</button>

关于javascript - 未处理的 JavaScript 异常终止 MSAppHost/WWAHost.exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36916836/

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