0
我試圖使用錯誤處理程序,但在使用錯誤處理程序之間沒有差別。 我不知道如何在nodejs中使用errorhandler模塊。如何在nodejs中使用errorhandler連接
var app = connect();
if (process.env.NODE_ENV === 'development') {
console.log('development on');
app.use(errorhandler({log: errorNotification}));
}
function errorNotification(err, str, req) {
var title = 'Error in ' + req.method + ' ' + req.url;
console.log('title');
}
app.use(function (req,res) {
res.writeHead(200,{'Content-Type': 'text/html'});
aaaaa(); //to invoke Reference error
res.end('Not Hello');
});