繁体   English   中英

Node.js - 每个Express请求的域,在另一个域内

[英]Node.js - Domain per Express request, inside another domain

节点中的错误处理。 哎呀!

我正在尝试布局像这样的基本节点应用程序...

群集 - >工作人员 - >服务器域 - >快速请求域

因此,如果错误被抛出18层深入调用堆栈,因为有人在登录表单上拼错了他们的名字,整个服务器都不会崩溃。

这是一些模拟工人部分的基本代码:

var domain, server;

domain = require('domain');
server = domain.create();

server.on('error', function(e) {
    console.log('total meltdown...', e.stack);
});

server.run(function() {

    var express = require('express')();

    express.configure(function() {

        // Domain on EVERY request
        express.use(function(req, res, next) {
            var d = domain.create();

            d.on('error', function(e) {
                console.log('fired REQUEST error', e.stack);
                next(e);
            });

            d.run(next);

        });

        // Generic error handler
        express.use(function(e, req, res, next) {
            res.status(500);
            res.end('oops');
        });

        // Serve the request with a blatent error
        express.get('/', function(req, res) {

            this_function_does_not_exist();
            res.end('we will never get here');

        });
    });

    // Fire 'er up
    express.listen(3000);
});

我期待的......

我卷曲http://localhost:3000/ ,得到一个不错的小'oops'错误,并在控制台中看到'触发REQUEST错误'和错误堆栈。

究竟发生了什么......

我把它作为浏览器响应和控制台......

ReferenceError:this_function_does_not_exist未在/Stuff/test.js:38:13在param(/ Stuff / node_modules / express / lib)的回调(/Stuff/node_modules/express/lib/router/index.js:161:37)处定义/router/index.js:135:11)在Router._dispatch传递(/Stuff/node_modules/express/lib/router/index.js:142:5)(/ Stuff / node_modules / express / lib / router / index) .js:170:5)在Object.router(/Stuff/node_modules/express/lib/router/index.js:33:10)下一步(/Stuff/node_modules/express/node_modules/connect/lib/proto.js) :190:15)下一个(/Stuff/node_modules/express/node_modules/connect/lib/proto.js:192:9)atb(domain.js:183:18)在Domain.run(domain.js:123) :23)

现在为什么会这样做呢?

好的,已解决 - Express有一个try / catch块,它首先进入我不存在的函数调用。

要让域捕获它,它需要从当前调用堆栈中取出,如...

        process.nextTick(function() {
            this_function_does_not_exist();
            res.end('we will never get here');
        });

然后该域名将抓住它。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM