1 Star 0 Fork 0

running/bs_background_end

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
running 提交于 2023-06-03 13:51 . 项目开源
const Koa=require('koa'),
router=require('koa-router')(),
bodyParser = require('koa-bodyparser');
const cors = require('koa2-cors');
const jwt = require('jsonwebtoken')
const app=new Koa();
app.use(bodyParser())
//引入子模块
const index = require('./routes/index.js');
const static = require('koa-static')
app.use(static(__dirname+'/public'));
app.use(cors());
// token的处理
app.use(async (ctx, next)=>{
console.log(ctx.url)
if (ctx.url == '/H/users/login') {
await next()
return
}
// 接收客户端传递过来的 token
const token = ctx.header.authorization
// 解析 token 如果解析失败 返回的是 null
const username = jwt.decode(token,'xiaoke')
// 判断客户端是否传递了 token
if (token == 'undefined' || username == null ) {
ctx.body = {
data: null,
meta: {
msg: "token无效",
status:400
}
}
return
}
// 直接放行
await next()
})
router.use('/H', index);
//启动路由
app.use(router.routes()).use(router.allowedMethods());
app.listen(8890);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hhh3167253066/bs_background_end.git
git@gitee.com:hhh3167253066/bs_background_end.git
hhh3167253066
bs_background_end
bs_background_end
master

搜索帮助