Python的flask常用函数route()怎么使用

今天小编给大家分享一下Python的flask常用函数route()怎么使用的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们

今天小编给大家分享一下Python的flask常用函数route()怎么使用的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

一、route()路由概述

  • 功能:将URL绑定到函数

  • 路由函数route()的调用有两种方式:静态路由和动态路由

二、静态路由和动态路径

方式1:静态路由

@app.route(“/xxx”) xxx为静态路径 如::/index / /base等,可以返回一个值、字符串、页面等

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为不确定的路径。

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)
  • 如果浏览器地址栏输入:http:// localhost:5000/hello/w3cschool

  • 则会在页面显示:Hello w3cschool!

三、route()其它参数

1.methods=[&lsquo;GET&rsquo;,&lsquo;POST&rsquo;]

  • 当前视图函数支持的请求方式,不设置默认为GET

  • 请求方式不区分大小写

    • methods=[&lsquo;GET&rsquo;] 支持的请求方法为GET

    • methods=[&lsquo;POST&rsquo;] 支持的请求方法为POST

    • methods=[&lsquo;GET&rsquo;,&lsquo;POST&rsquo;] 支持的请求方法为POST GET

  @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()怎么使用”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注恰卡网行业资讯频道。

本站部分文章来自网络或用户投稿,如无特殊说明或标注,均为本站原创发布。涉及资源下载的,本站旨在共享仅供大家学习与参考,如您想商用请获取官网版权,如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
后端

JVM垃圾回收器是什么

2022-7-16 9:06:27

后端

Windows server 2003卸载和安装IIS的方法

2022-7-16 9:06:46

搜索