基于hi-nginx的web开发(python篇)——路由装饰…
2018-06-18 02:04:14来源:未知 阅读 ()
现在,有了起步的基本认识,现在需要一个可以媲美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_b 15 return wrapper_a 16 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('{}<br>{}<br>{}<br>{}<br>{}'.format(req.client(),req.method(),req.uri(),req.user_agent(),req.param()))
17 res.status(200)
18
19 @app.route(r"^/hello/(?P<who>\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:https://github.com/webcpp/hi.py
这样的话,上面代码的第1,2行就可以免了。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Python : Module
- 网络编程相关知识点 2019-08-13
- 浅谈 Web框架 2019-08-13
- 基于tornado---异步并发接口 2019-07-24
- Python 重点知识整理(基于Python学习手册第四版) 2019-07-24
- 【Demo 1】基于object_detection API的行人检测 1:环境与依 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash