Exception Handling
# Exception Capture
Taking benefits from framework asynchronous support, all exceptions can be caught by try catch
.
With those features, you can take following implementation as reference:
// app/service/test.js |
Generally, you can use try catch
to catch exceptions. However, some implementations may break this mechanism down. Imaging that await
makes generators run in order just like a chain. What will happen if one of them jumpoff the chain? The following code can help you realize the imagination:
// app/controller/home.js |
In this case, you may find that the exceptions in setImmediate
will be swallowed because the scope breaks the chain, although egg already handled exceptions externally.
Above scene is also considered. To catch the exception inside the scope, You can invoke helper method ctx.runInBackground(scope)
to wrap the chain back. Now, the exceptions will be detected and caught.
class HomeController extends Controller { |
For convenience of locating problems, exceptions must be guaranteed to be Error object or object based on Error object, which offers a trace of which functions were called.
# Egg Takes Charge of Exceptions
egg-onerror, one of Egg's plugin, handles all exceptions thrown in Middleware, Controller and Service, and returns the error as response based on "Accept" in request header field.
Accept | ENV | errorPageUrl | response |
---|---|---|---|
HTML & TEXT | local & unittest | - | onerror built-in error page |
HTML & TEXT | others | YES | redirect to errorPageUrl |
HTML & TEXT | others | NO | onerror built-in error page(simple, not recommended) |
JSON & JSONP | local & unittest | - | JSON Object or JSONP response body with details |
JSON & JSONP | others | - | JSON object or JSONP response body without details |
# errorPageUrl
Redirecting to your customized error page by setting errorPageUrl
in onerror
plugin.
onerror
config in config/config.default.js
:
module.exports = { |
# Create Your Universal Exception Handler
Once the default handler no longer meet your needs, you still can customize your owner error handler by onerror's configurations.
// config/config.default.js |
# 404
Egg won't take NOT FOUND
from back-end as exception. Instead, if NOT FOUND
is emitted without a body, it will return the following JSON object as default response.
identified as JSON:
{ |
identified as HTML:
<h1>404 Not Found</h1> |
Overriding default 404 page to the one you want:
// config/config.default.js |
# Customize 404 Response
If you want a customized 404 response, you only need to create a middleware to handle it once, just like handling exceptions above.
// app/middleware/notfound_handler.js |
Adding yours to middleware
in config:
// config/config.default.js |