“Node.js Manejo de errores” Código de respuesta

Error de lanzamiento de Node JS

FactoryController.prototype.create = function (callback) {
    //The throw is working, and the exception is returned.
    throw new Error('An error occurred'); //outside callback 
    try {
        this.check(function (check_result) {
            callback(check_result);
        });
    } catch (ex) {
        throw new Error(ex.toString());
    }
}

FactoryController.prototype.create = function (callback) {
    try {
        this.check(function (check_result) {
            //The throw is not working on this case to return the exception to the caller(parent)
            throw new Error('An error occurred'); //inside callback 
        });
    } catch (ex) {
        throw new Error(ex.toString());
    }
}
Helpless Hoopoe

Manejo de errores en el nodo JS

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

Manejo de errores en Node.js

app.use(( err, req, res, next ) => {
  res.locals.error = err;
  if (err.status >= 100 && err.status < 600)
    res.status(err.status);
  else
    res.status(500);
  res.render('error');
});
Super Sloth

Node.js Manejo de errores

process.on('warning', veri => console.log(veri))
process.on('unhandledRejection', veri => console.log(veri))
process.on('uncaughtException', veri => console.log(veri))
Pudochu

Respuestas similares a “Node.js Manejo de errores”

Preguntas similares a “Node.js Manejo de errores”

Más respuestas relacionadas con “Node.js Manejo de errores” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código