📜  node.js 中的错误处理 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:54.527000             🧑  作者: Mango

代码示例2
app.get('/', function (req, res, next) {
  Promise.resolve().then(function () {
    throw new Error('BROKEN')
  }).catch(next) // Errors will be passed to Express.
})