-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path笔记
37 lines (24 loc) · 945 Bytes
/
笔记
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
KOA:
1.简单、第三方中间件 => 做东西
2.express、koa原理
koa本身、有用组件(cookie、session、static、中间件)
------------------------------------------------------------------------------------------------
koa和express的区别
1.没有static——koa-static
2.koa强依赖router——没有get,post,use也不能指定地址
koa-route(小东西)
路由参数 直接给中间件函数加参数——ctx, ..., next
server.use(route.get(xxx))
koa-router(项目)
路由参数 ctx.params
let r1 = router()
server.use(r1.routes())
r1.get(xxx)
3.中间件
方便
ctx.req, ctx.res 原生req,res对象
ctx.request, ctx.response koa封装的req,res
------------------------------------------------------------------------------------------------
基本:
koa原理
------------------------------------------------------------------------------------------------