gpt4 book ai didi

node.js - 如何使用域来处理 Node js 应用程序中的异常

转载 作者:行者123 更新时间:2023-12-03 08:58:25 27 4
gpt4 key购买 nike

在我的 Node js 应用程序中,我想使用域捕获异常。我该怎么做。我尝试了下面的示例,但它显示错误为“错误:找不到模块“步骤”。

应用程序.js

            var domain=require('domain');
var mainDomain = domain.create();
mainDomain.run(function() {
fs.readFile(filename, 'utf8', mainDomain.intercept(function(data) {
console.log(data);
}));
});
mainDomain.on("error", function(error){
console.log(error);
});

最佳答案

希望你在四月份解决了这个问题。但是,为了完成您的帖子,我遇到了同样的问题。

在线抛出错误:

var domain=require('domain');

问题与运行早期版本的 Nodejs 有关。我安装了最新版本(v0.10.21),问题解决了。

关于node.js - 如何使用域来处理 Node js 应用程序中的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16029891/

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