3.0.0 • Published 9 months ago
@eggjs/onerror v3.0.0
@eggjs/onerror
Default error handling plugin for egg.
Install
npm i @eggjs/onerrorUsage
egg-onerror is on by default in egg. But you still can configure its properties to fits your scenarios.
errorPageUrl: String or Function- If user request html pages in production environment and unexpected error happened, it will redirect user toerrorPageUrl.accepts: Function- detect user's request acceptjsonorhtml.all: Function- customize error handler, ifallpresent, negotiation will be ignored.html: Function- customize html error handler.text: Function- customize text error handler.json: Function- customize json error handler.jsonp: Function- customize jsonp error handler.
// config.default.js
// errorPageUrl support function
exports.onerror = {
errorPageUrl: (err, ctx) => ctx.errorPageUrl || '/500',
};
// an accept detect function that mark all request with `x-requested-with=XMLHttpRequest` header accepts json.
function accepts(ctx) {
if (ctx.get('x-requested-with') === 'XMLHttpRequest') return 'json';
return 'html';
}Questions & Suggestions
Please open an issue here.
License
Contributors
Made with contributors-img.
3.0.0
9 months ago