专栏名称: Python开发者
人生苦短,我用 Python。伯乐在线旗下账号「Python开发者」分享 Python 相关的技术文章、工具资源、精选课程、热点资讯等。
目录
相关文章推荐
Python爱好者社区  ·  太炸裂了!亚马逊云来了 ·  昨天  
Python爱好者社区  ·  北大“韦神”粉丝超千万,家属回应牙齿缺失 ·  2 天前  
Python爱好者社区  ·  全球首个满级QQ正式诞生!满级后长这样 ·  昨天  
Python开发者  ·  刚刚,OpenAI正式发布o3-pro!奥特 ... ·  昨天  
51好读  ›  专栏  ›  Python开发者

Werkzeug库:routing模块

Python开发者  · 公众号  · Python  · 2017-09-09 20:00

正文

请到「今天看啥」查看全文


'/ /' , endpoint = 'blog/archive' ),

Rule ( '/ / /' , endpoint = 'blog/archive' ),

Rule ( '/ / / /' , endpoint = 'blog/archive' ),

Rule ( '/ / / / ' ,

endpoint = 'blog/show_post' ),

Rule ( '/about' , endpoint = 'blog/about_me' ),

Rule ( '/feeds/' , endpoint = 'blog/feeds' ),

Rule







请到「今天看啥」查看全文