代码拉取完成,页面将自动刷新
'use strict'
const titbit =require('titbit')
const {cookie,session}=require('titbit-toolkit')
const app=new titbit({
debug:true
})
app.use(async (c,next)=>{
if(c.query.key!=='12345'){
return c.status(403).send('deny')
}
await next()
},{group:'session'})
app.use(async (c,next)=>{
let startTime=Date.now()
await next()
let endTime=Date.now()
console.log(endTime-startTime,'ms')
})
app.use(new cookie).use(new session)
app.use(async (c,next)=>{
console.log('home start')
await next()
console.log('home end')
},{group:'home',method:['GET']})
qpp.get('/',async c=>{
c.send('ok')
},{name:'主页',group:'home'})
app.get('/sess/:x/:y',async c=>{
c.setSession('x',c.param.x)
c.setSession('y',c.param.y)
c.send(c.getSession())
},{group:'session'})
app.run(1235)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。