下面是我设置的简单Koa服务器。但是,每次执行无效的GET请求时,服务器都会挂起&#34; ,因为Chrome中的网络资源标签会指定待处理。< / p>
server.js
const app = new Koa();
const apiUrl = `http://${KOA_HOST}:${API_PORT}`;
const proxy = httpProxy.createProxyServer({
target: apiUrl,
});
const router = new Router();
app.use(errorHandler);
app.use(compress({
flush: zlib.Z_SYNC_FLUSH,
}));
app.use(responseTime());
app.use(logger());
app.use(helmet());
app.use(bodyParser());
router.get('/bundle/*', serveStatic(PUBLIC_PATH));
router.get('*', render);
app.use(router.routes());
const server = http.createServer((req, res) => {
const path = url.parse(req.url).pathname;
if (/^\/api.*/.test(path)) {
return proxy.web(req, res, { target: apiUrl });
}
app.callback()(req, res); // need to understand this more
});
server.listen(KOA_PORT, KOA_HOST, err => {
if (err) {
console.log(chalk.red(err));
} else {
const url = `http://${KOA_HOST}:${KOA_PORT}`;
console.log(`${chalk.yellow(`backend server`)} listening on ${chalk.yellow(url)}`);
}
});
错误中间件
export default async function errorHandler(ctx, next) {
try {
await next();
} catch (err) {
console.log(pe.render(err));
ctx.redirect('/oops');
}
}
如何优雅地处理所有无效的GET请求?,包括无效的静态文件请求?
答案 0 :(得分:1)
使用app.use(router.allowedMethods())中间件。
您可以自行定义notImplemented
或methodNotAllowed
的响应方法。