-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
37 lines (32 loc) · 870 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const Koa = require('koa');
const next = require('next');
const Router = require('koa-router');
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev });
const handle = app.getRequestHandler();
const server = new Koa();
const router = new Router();
app.prepare().then(() => {
// router.get('/about/:id', async (ctx) => {
// const getId = ctx.params.id;
// await handle(ctx.req, ctx.res, {
// pathname: '/about',
// query: {
// id: getId,
// }
// });
// ctx.respond = false;
// });
server.use(router.routes());
server.use(async (ctx, next) => {
await handle(ctx.req, ctx.res);
ctx.respond = false; // 不使用 Koa 内置的 response 处理方法
});
server.use(async (ctx, next) => {
ctx.res.statusCode = 200
await next()
})
server.listen(9000, () => {
console.log('server start listening 9000');
});
});