博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基于hi-nginx的web开发(python篇)——路由装饰器
阅读量:5881 次
发布时间:2019-06-19

本文共 1864 字,大约阅读时间需要 6 分钟。

现在,有了的基本认识,现在需要一个可以媲美flask或者bottle的简洁易用的路由功能,可以用装饰器写法任意映射 URLs 到代码。

这个,并不难。首先,来一个叫做hi的模块:hi.py:

1 import re 2  3 class hi: 4     def __init__(self): 5         self.uri_map={} 6         self.uri_regex_map={} 7  8     def route(self,pattern,method): 9         def wrapper_a(func):10             self.uri_map[pattern]={
'method':method,'callback':func}11 self.uri_regex_map[pattern]=re.compile(pattern)12 def wrapper_b(req,res,param):13 func(req,res,param)14 return wrapper_b15 return wrapper_a16 17 def run(self,req,res):18 for k,v in self.uri_map.items():19 if req.method() in v['method']:20 m=self.uri_regex_map[k].match(req.uri())21 if m:22 v['callback'](req,res,m.groupdict())23 break

把它和index.py放在同一个目录中。以下就是使用路由装饰器后的新代码:

1 import sys 2 sys.path.append('/usr/local/nginx/python') 3  4 from hi import hi 5 app =hi() 6  7 @app.route(r'^/test/?$',['GET','POST']) 8 @app.route(r"^/$",['GET']) 9 def hello_world(req,res,param):10     res.header('Content-Type','text/plain;charset=utf-8')11     res.content('hello,world')12     res.status(200)13 14 @app.route(r"^/client/?$",['GET','POST'])15 def client(req,res,param):16     res.content('{}
{}
{}
{}
{}'.format(req.client(),req.method(),req.uri(),req.user_agent(),req.param()))17 res.status(200)18 19 @app.route(r"^/hello/(?P
\w+)?$",['GET'])20 def hello(req,res,param):21 res.content('{}={}'.format('who',param['who']))22 res.status(200)23 24 25 26 if __name__ == '__main__':27 app.run(hi_req,hi_res)

 

是不是跟些flask或者bottle一样简单?而且还快得多喔!

访问http://localhost:8080/,http://localhost:8080/client?a=90,http://localhost:8080/hello/cnblogs即可查看结果。

 

当然,也可以先安装hi.py:

这样的话,上面代码的第1,2行就可以免了。

 

转载于:https://www.cnblogs.com/hi-nginx/p/8637705.html

你可能感兴趣的文章
老男孩最近几年常用的免费的开源软件
查看>>
计算字符串中回文子串的个数 Palindromic Substrings
查看>>
Python脚本通过邮件发送zabbix报警图片
查看>>
java线上服务故障分析笔记
查看>>
做人与做事的心态
查看>>
css兼容性问题(四)
查看>>
Configure SNMP Settings for vCenter
查看>>
出现“连接到服务器失败。错误: 0x80080005”错误的解决办法
查看>>
我的友情链接
查看>>
python面向对象(二)
查看>>
mysql的安装
查看>>
我的友情链接
查看>>
正则校验密码(字母和数字同时出现 多少位到多少位)
查看>>
谈谈Memcached与Redis(一)
查看>>
moto 917 不想使用TD网人方法
查看>>
软件版本号编写规范及说明
查看>>
Crontab 定时任务设置
查看>>
nginx安装配置+清缓存模块安装
查看>>
大规模并行查询引擎 BlinkDB
查看>>
红帽7系linux破解root密码的三种办法
查看>>