- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
const fs = require('fs');
async function read() {
return fs.promises.readFile('non-exist');
}
read()
.then(() => console.log('done'))
.catch(err => {
console.log(err);
})
给出:
➜ d2e2027b node app.js
[Error: ENOENT: no such file or directory, open 'non-exist'] {
errno: -2,
code: 'ENOENT',
syscall: 'open',
path: 'non-exist'
}
➜ d2e2027b
堆栈丢失。如果我使用
fs.readFileSync
相反,它按预期显示堆栈。
➜ d2e2027b node app.js
Error: ENOENT: no such file or directory, open 'non-exist'
at Object.openSync (node:fs:582:3)
at Object.readFileSync (node:fs:450:35)
at read (/private/tmp/d2e2027b/app.js:4:13)
at Object.<anonymous> (/private/tmp/d2e2027b/app.js:8:1)
作为一个 super 丑陋的解决方法,我可以放置 try/catch 并在 ENOENT 的情况下抛出一个新错误,但我确信那里有更好的解决方案。
read()
.then(() => console.log('done'))
.catch(err => {
if (err.code === 'ENOENT') throw new Error(`ENOENT: no such file or directory, open '${err.path}'`);
console.log(err);
})
(我尝试了 Node v12、v14、v16 - 相同)
最佳答案
Nodejs 有几个模块会抛出无用的错误 stack
特性;在我看来,这是一个错误,但它自 nodejs 一开始就存在,由于担心向后兼容性,此时可能无法更改(编辑:我收回这个;stack
属性是非标准的,开发人员应该知道不要依赖它的结构;nodejs 真的应该做出改变以抛出更有意义的错误)。
我已经包装了我在 nodejs 中使用的所有此类函数,修改它们以抛出正确的错误。可以使用此函数创建此类包装器:
let formatErr = (err, stack) => {
// The new stack is the original Error's message, followed by
// all the stacktrace lines (Omit the first line in the stack,
// which will simply be "Error")
err.stack = [ err.message, ...stack.split('\n').slice(1) ].join('\n');
return err;
};
let traceableErrs = fnWithUntraceableErrs => {
return function(...args) {
let stack = (new Error('')).stack;
try {
let result = fnWithUntraceableErrs(...args);
// Handle Promises that resolve to bad Errors
let isCatchable = true
&& result != null // Intentional loose comparison
&& result.catch != null // Intentional loose comparison
&& (result.catch instanceof Function);
return isCatchable
? result.catch(err => { throw formatErr(err, stack); })
: result;
} catch(err) {
// Handle synchronously thrown bad Errors
throw formatErr(err, stack);
}
};
}
这个包装器处理简单的函数、返回 promise 的函数和异步函数。基本前提是在调用包装函数时初始生成一个栈;此堆栈将具有导致调用包装函数的调用者链。现在,如果抛出错误(同步或异步),我们会捕获错误,设置其
stack
属性变为有用的值,并再次抛出;如果您愿意,可以“捕获并释放”。
> let readFile = traceableErrs(require('fs').promises.readFile);
> (async () => await readFile('C:/nonexistent.txt'))().catch(console.log);
Promise { <pending> }
> ENOENT: no such file or directory, open 'C:\nonexistent.txt'
at repl:5:18
at repl:1:20
at repl:1:48
at Script.runInThisContext (vm.js:120:20)
at REPLServer.defaultEval (repl.js:433:29)
at bound (domain.js:426:14)
at REPLServer.runBound [as eval] (domain.js:439:12)
at REPLServer.onLine (repl.js:760:10)
at REPLServer.emit (events.js:327:22)
at REPLServer.EventEmitter.emit (domain.js:482:12) {
errno: -4058,
code: 'ENOENT',
syscall: 'open',
path: 'C:\\nonexistent.txt'
}
如果要整改
fs.promises
套件抛出好的错误,你可以这样做:
let fs = { ...require('fs').promises };
for (let k in fs) fs[k] = traceableErrs(fs[k]);
(async () => {
// Now all `fs` functions throw stackful errors
await fs.readFile(...);
await fs.writeFile(...);
})();
关于node.js - fs.promises.readFile 中没有堆栈 ENOENT 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68022123/
如何从 promise 中退出 promise ? perl6 文档没有提供简单的方法。例如: my $x = start { loop { # loop forever until "qui
我的用户 Controller 中有一个索引操作,其中我试图连续做两件事,并且在它们都有机会完成之前不执行所需的 res.json() 方法。 我有一个加入用户的友谊加入模型。一列是 friender
请帮我解释一下为什么日志结果有两种不同: 方式 1:每 1 秒顺序记录一次 方式 2:1 秒后记录所有元素。 // Way 1 let sequence = Promise.resolve(); [1
我的问题很简单。 Promise.all() 方法可以返回 Promise 吗?让我解释一下: function simpleFunction() { let queue = [];
我正在使用 Promise 从存储中读取文件并转换为 base64 字符串。我有图像数组,使用 RNFS 读取图像 const promise_Images = _Images.map(async (
如果使用非空数组调用 Promise.all 或 Promise.race,它们将返回一个待处理的 Promise: console.log(Promise.all([1])); // prints
Promise.all 是否可以在没有包装 promise 的情况下返回链的最后一个值? 如果不使用 await,它在我的上下文中不起作用 没有包装的例子: function sum1(x){ r
我一直在玩 promise,通常能想出如何处理好它们,但在这种情况下,我不知道如何删除一个 promise-wrapping level。 代码如下: let promise2 = promise1.
考虑以下嵌套的Promises结构: const getData = async() => { const refs = [{ name: "John33", age: 3
我已经阅读了 Promise/A+ 规范,但据我了解,还有诸如 Promise/A 和 Promise 之类的东西。它们之间有什么区别? Promise 和 Promise/A 规范也是如此吗?如果是
当我运行以下代码时: my $timer = Promise.in(2); my $after = $timer.then({ say "2 seconds are over!"; 'result'
以下简单的 promise 是发誓的,我不允许打破它。 my $my_promise = start { loop {} # or sleep x; 'promise re
我正在尝试扩展Promise: class PersistedPromise extends Promise { } 然后在派生类上调用静态resolve以直接创建一个已解决的Promise: Per
我有两个返回 promise 的函数,我独立使用它们作为: getLocal().then(...) 和 getWeb().then(...) 但是现在我遇到了一个奇怪的问题: 1) 我需要第三个
我不知道 promise.all 解决方案中的 promise.all 是否是一个好的实践。我不确定。 我需要从一组用户获取信息,然后通过此信息响应,我需要发送消息通知。 let userList =
我一直在尝试使用 queueMicrotask() 函数,但我没有弄清楚当回调是微任务时回调的优先级如何。查看以下代码: function tasksAndMicroTasks() { const
我一直在尝试使用 queueMicrotask() 函数,但我没有弄清楚当回调是微任务时回调的优先级如何。查看以下代码: function tasksAndMicroTasks() { const
今年早些时候,我在 Pharo Smalltalk 参与了一个 promise 项目。这个想法是为了实现以下行为: ([ 30 seconds wait. 4 ]promiseValue )then:
大家好,提前感谢您的帮助。 下面是我正在尝试做的事情 function1(){ throw some error(); } function2() { // dosomething suc
我有以下未解析的代码。f2 解决了,所以我不会添加该代码,它是 f1 我有问题。 我调用函数,它到达最里面如果,它调用函数“find”,它执行函数 findId,完美返回 Id,然后执行 editId
我是一名优秀的程序员,十分优秀!