Python的flask常用函数route()介绍
2024-10-05
29
本文为大家带来了关于Python的flask常用函数route()介绍,感兴趣的小伙伴一起来看看吧。
一、route()路由概述
功能:将URL绑定到函数
路由函数route()的调用有两种方式:静态路由和动态路由
二、静态路由和动态路径
方式1:静态路由
@app.route(“/xxx”) xxx为静态路径 如::/index / /base等,可以返回一个值、字符串、页面等
?12345678910111213 | from flask import Flask app = Flask(__name__) @app .route( '/hello' ) def hello_world(): return 'Hello World!!!' @app .route( '/pro' ) def index(): return render_template( 'login.html' ) if __name__ = = '__main__' : app.run(debug = True ) |
方式2:动态路由
采用<>进行动态url的传递
@app.route(“/”),这里xxx为不确定的路径。
?12345678910 | from flask import Flask app = Flask(__name__) @app .route( '/hello/<name>' ) def hello_name(name): return 'Hello %s!' % name if __name__ = = '__main__' : app.run(debug = True ) < / name> |
如果浏览器地址栏输入:http:// localhost:5000/hello/w3cschool
则会在页面显示:Hello w3cschool!
三、route()其它参数
1.methods=[‘GET’,‘POST’]
当前视图函数支持的请求方式,不设置默认为GET
请求方式不区分大小写
methods=[‘GET’] 支持的请求方法为GET
methods=[‘POST’] 支持的请求方法为POST
methods=[‘GET’,‘POST’] 支持的请求方法为POST GET
?123456789101112 | @app .route( '/login' , methods = [ 'GET' , 'POST' ]) # 请求参数设置不区分大小写,源码中自动进行了upper def login(): if request.method = = 'GET' : return render_template( 'login.html' ) elif request.method = = 'POST' : username = request.form.get( 'username' ) pwd = request.form.get( 'pwd' ) if username = = 'yang' and pwd = = '123456' : session[ 'username' ] = username return 'login successed 200 ok!' else : return 'login failed!!!' |
以上就是关于Python的flask常用函数route()介绍的全部内容了,感兴趣的小伙伴记得点击关注哦。
更新于:1个月前赞一波!
相关文章
- 【说站】python自由变量是什么
- 【说站】Python如何用下标取得列表的单个值
- 【说站】Python切片获取列表多个值
- 【说站】python变量如何在作用域使用
- 【说站】Python如何在列表中添加新值
- 【说站】Python中JSON数据如何读取
- 【说站】Python装饰器的应用场景
- 【说站】Python threading模块的常用方法
- 【说站】Python map接收参数的探究
- 【说站】Python如何自定义类继承threading.Thread
- 【说站】java内置函数式接口有哪些?
- 【说站】python中random模块求随机数
- 【说站】python中figure()函数画两张图
- 【说站】python中subplot函数怎么画图?
- 【说站】python异常时的语句处理
- 【说站】python列表如何传递到线程?
- 【说站】python局部作用域是什么
- 【说站】python中Queue如何通信
- 【说站】python WSGI规范是什么
- 【说站】python中进程池Pool的初始化
文章评论
评论问答