tornado框架自定义中间件过程中的一些基础技术(1)

该博客为转载内容,转载自https://www.cnblogs.com/saintdingspage/p/10956830.html ,涉及Python相关知识。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

为了检查当前请求是否在用户的权限列表中,我们需要获取uri(也就是当前链接),下列代码说明了获取的过程,也证明了python魔术方法的重要性
class
testHandler(RequestHandler): def prepare(self): print(self.__dir__())#或取对象所有属性和方法名称 myurl = self.__getattribute__('request')#具体获取request属性 print(myurl.uri)#具体获取request属性的uri属性 print('type:{}'.format(type(myurl))) print('request:{}'.format(self.__getattribute__('request'))) wenwa = self.settings['middleware'][0]() wenwa.process_request(self) def get(self): self.render('./authtest/authtest.html') def post(self): bz = self.get_argument("value") print(bz) self.write({"bz":"ok"})
打印结果:

 


 

转载于:https://www.cnblogs.com/saintdingspage/p/10956830.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值