flask中添加路由的方式
摘要:
在Flask中,添加路由有两种方式:(一般情况下都是用第一种方式) 方式一:常见的装饰器模式 @app.route("/") def index(): return "Hello World" 方式二:通过阅读装饰器模式添加路由的源码发现 def route(self, rule, **option 阅读全文
posted @ 2023-06-26 11:34 一先生94 阅读(73) 评论(0) 推荐(0) 编辑