This article introduces in detail how to customize error types under Node.js. It has certain reference value for everyone to learn or use Node.js. Friends in need can refer to it. Let’s take a look together. Take a look.
Preface
Generally speaking, few people will consider the strategy of how to deal with errors generated by applications. During the debugging process, simply Using console.log('error')
to locate errors is basically enough. By leaving this debugging information, it can save us a lot of time in the future debugging process and improve maintainability. So error messages are very important. At the same time, it will also bring about some bad usage. Custom error types have been used in recent projects, and I felt it was necessary to learn more about them, so I wrote this article to facilitate myself and everyone in need to refer to them when needed.
Subclassing Error
First we can define a subclass of Error. It is easy to achieve through Object.create
and util.inherits
:
var assert = require('assert'); var util = require('util'); function NotFound(msg){ Error.call(this); this.message = msg; } util.inherits(NotFound, Error); var error = new NotFound('not found'); assert(error.message); assert(error instanceof NotFound); assert(error instanceof Error); assert.equal(error instanceof RangeError, false);
can be achieved through instanceof
To check the error type and perform different processing according to the type.
The above code sets the built-in message
, and error
is an instance of NotFound
and Error
, But not RangeError
.
If you use the express
framework, you can set other properties
to make error
more useful.
For example, when handling an HTTP error, you can write it like this:
function NotFound(msg) { Error.call(this); this.message = msg; this.statusCode = 404; }
Now You can already handle error messages through error handling middleware:
app.use(function(err, req, res, next) { console.error(err.stack); if (!err.statusCode || err.statusCode === 500) { emails.error({ err: err, req: req }); } res.send(err.statusCode || 500, err.message); });
This will send the HTTP status code to the browser, when ## When the statusCode
of #err is not set or equals 500, this error will be sent via email. This will eliminate those 404, 401, 403, etc. errors.
console.error(err.stack) In fact, it will not work as expected. Like node, chrome based on V8 can use
Error.captureStackTrace(this, arguments.callee) error constructor for stack tracing.
var NotFound = function(msg) { Error.call(this); Error.captureStackTrace(this, arguments.callee); this.message = msg || 'Not Found'; this.statusCode = 404; this.name = "notFound" } util.inherits(NotFound, Error); export.NotFoundError = NotFound;
Of course we can also extend the abstract error type created above to other custom errors:
var notFountError = require('./error').NotFountError; var UserNotFound = function(msg){ this.constructor.super_(msg); } util.inherits(UserNotFound, notFoundError);
Introduction to module definition in nodejs
nodejs method to implement bigpipe asynchronous loading of pages
About node.js method of reading and writing system files and directories based on the fs module
The above is the detailed content of Analysis of custom error types under Node.js. For more information, please follow other related articles on the PHP Chinese website!