123456789101112131415161718192021222324252627 |
- 'use strict';
- module.exports = () => {
-
- return async function notFoundHandler(ctx, next) {
- await next();
- if (ctx.status === 404 && !ctx.body) {
- if (ctx.acceptJSON) {
- ctx.body = ctx.app.szjcomo.appResult('访问页面不存在');
- } else {
- ctx.body = '<h1 style="text-align:center;line-height:300px;">访问页面不存在</h1>';
- }
- }
- };
- };
|