我有如下的代码,本来期望‘core exception’ 可以被 ‘立即执行的函数(见最后)’捕获到,并打印出“Got it in main scope”,但没有按预期执行,即"Got it in main scope"没有打印。
'use strict';
function core() {
function wrapper() {
return new Promise((resolve, reject) => {
throw new Error("wrapper exception rises");
});
}
return new Promise(async (resolve, reject) => {
try {
await wrapper();
} catch(error) {
console.error(error.message);
throw new Error("core exception rises");
}
});
}
(async function() {
try {
await core();
} catch(error) {
console.error(error.message);
console.error("Got it in main scope");
}
})();
程序运行结果为
wrapper exception rises
(node:10093) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 3): Error: core exception rises
(node:10093) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
谁帮忙解释一下?非常感谢!
我使用的是node v7.2.1
简化的例子是这样的:
改改:
或者:
你代码的问题是,
core exception rises
这个地方的Promise
既没有resolve
,也没有reject
,所以你要怎样呢?^^为什么我只有做如下的修改,才能得到预期的结果呢? 是不是和microtask有关呢?谁能帮忙清楚地解释一下?
得到的运行结果为:
<脚本>警报('s')</脚本>