微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

node.js – Express js错误处理

我正在尝试使用快递运行错误处理,而不是看到“错误!!!”的响应。就像我期望我在控制台上看到“一些例外”,然后进程被杀死。这是如何设置错误处理,如果是另一种方法来捕获错误

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

app.use(function(err,req,res,next) {
    console.log("error!!!");
    res.send("error!!!");
});

app.get('/',function(request,response) {
    throw "some exception";
    response.send('Hello World!');
});

app.listen(5000,function() {
  console.log("Listening on 5000");
});

解决方法

关于错误处理的示例应用/指南可在
https://expressjs.com/en/guide/error-handling.html
但是应该修复你的代码

// Require Dependencies
var express = require('express');
var app = express();

// Middleware
app.use(app.router); // you need this line so the .get etc. routes are run and if an error within,then the error is parsed to the next middleware (your error reporter)
app.use(function(err,next) {
    if(!err) return next(); // you also need this line
    console.log("error!!!");
    res.send("error!!!");
});

// Routes
app.get('/',response) {
    throw "some exception";
    response.send('Hello World!');
});

// Listen
app.listen(5000,function() {
  console.log("Listening on 5000");
});

有关快速错误处理的文档

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐