Gestión de Errores
When creating a new project with Foal, error handling is already configured for you. When an error is thrown or rejected in a controller or a hook, the application returns an HTML page Internal Server Error
with the status code 500
. If the configuration parameter settings.debug
is set to true
(which is the case during development or testing), the page includes some details about the error (name, message, stack trace, etc).
#
Customizing the Error HandlerIn some situations, we may want to override this behavior. This can be the case when we want, for example, to send the error to an external service, treat some errors in a particular way, customize the error page or return a JSON object to describe the error.
To do this, you can add an handleError
method to the AppController
class.
#
Reporting Errorsapp.controller.ts
If necessary, error logging can also be disabled by setting the
settings.logErrors
configuration value tofalse
.
#
Returning JSONapp.controller.ts
#
Converting Errors into 4xx Responsesapp.controller.ts
#
Errors in Hooks Post FunctionsWhen an error is thrown or rejected in a hook or in a controller method, it is converted directly into an HttpResponseInternalServerError
(or another response if the handleError
above is defined). The method or hook behaves exactly the same as if it had returned this response.
Thus, when using hook post functions, you might want to check whether or not an error has been thrown before executing logic.
If you use the default error handler, then the generated
HttpResponseInternalServerError
has two additional properties:error
andctx
.