前端学习(1370):错误处理中间件
生活随笔
收集整理的這篇文章主要介紹了
前端学习(1370):错误处理中间件
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
const express = require('express');const app = express();
app.get('/index', (req, res) => {throw new Error('程序發(fā)生了錯誤');/* res.send(); */
})
app.use((err, req, res, next) => {res.status(500).send(err.message);
})
app.listen(3000);
console.log('服務(wù)器啟動成功');
運(yùn)行結(jié)果
總結(jié)
以上是生活随笔為你收集整理的前端学习(1370):错误处理中间件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Neo4j简单构建知识图谱实例
- 下一篇: pdg转pdf与djvu转pdf大法