nodejs程序保证服务出现任何异常都不崩溃的方法
process.on('uncaughtException', fn) 可以捕获到任何未捕获的异常 保证服务正常运作process.on('uncaughtException', function (err) { log(err); }); http.createServer(function(req, res){ try { mvcHandler(req, res); } catch(e){ res.writeHead(200); res.end('Server Error'); } }).listen(8080, "127.0.0.1");
页:
[1]