UNPKG
zan-proxy
Version:
beta (3.1.6-alpha.1)
latest (4.0.27)
4.0.27
4.0.26
4.0.25
4.0.24
4.0.23
4.0.22
4.0.21
4.0.20
4.0.19
4.0.18
4.0.17
4.0.16
4.0.15
4.0.14
4.0.13
4.0.12
4.0.11
4.0.10
4.0.9
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
3.1.6
3.1.6-alpha.1
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
0.1.12
0.1.11
前端代理
github.com/youzan/zan-proxy
youzan/zan-proxy
zan-proxy
/
src
/
App
/
middleware
/
user.ts
11 lines
(10 loc)
•
231 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
const
user = profileService => {
return
async
(ctx, next) => {
if
(ctx.ignore) {
await
next();
return
; } ctx.userID = profileService.getClientIpMappedUserId(ctx.clientIP);
await
next(); }; };