亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中flask框架如何實現瀏覽器點擊自定義跳轉頁面

發布時間:2020-07-18 15:23:08 來源:億速云 閱讀:1541 作者:小豬 欄目:開發技術

這篇文章主要講解了Python中flask框架如何實現瀏覽器點擊自定義跳轉頁面,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

代碼如下

_init_.py

from flask import Flask, request, url_for, redirect, render_template

app = Flask(__name__)

@app.route('/')
def index():
  return render_template('index.html')

@app.route('/cool_form', methods=['GET', 'POST'])
def cool_form():
  if request.method == 'POST':
    # do stuff when the form is submitted

    # redirect to end the POST handling
    # the redirect can be to the same route or somewhere else
    return redirect(url_for('index'))

  # show the form, it wasn't submitted
  return render_template('cool_form.html')

index.html

<!doctype html>
<html>
<body>
  <p><a href="{{ url_for('cool_form') }}" rel="external nofollow" >Check out this cool form!</a></p>
</body>
</html>

cool_form.html

<!doctype html>
<html>
<body>
  <form method="post">
    <button type="submit">Do it!</button>
  </form>
</html>

運行結果

Python中flask框架如何實現瀏覽器點擊自定義跳轉頁面

進入5000端口顯示如圖,點擊這個按鈕,跳到自定義的/cool_form頁面

Python中flask框架如何實現瀏覽器點擊自定義跳轉頁面

代碼在github:https://github.com/qingnvsue/flask中的webbutton文件夾

在我的程序里我實現了在web頁面點擊加法器或者除法器按鈕進入相應頁面

Python中flask框架如何實現瀏覽器點擊自定義跳轉頁面

Python中flask框架如何實現瀏覽器點擊自定義跳轉頁面

Python中flask框架如何實現瀏覽器點擊自定義跳轉頁面

看完上述內容,是不是對Python中flask框架如何實現瀏覽器點擊自定義跳轉頁面有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

甘洛县| 沙田区| 襄樊市| 革吉县| 新密市| 平舆县| 龙山县| 平安县| 韶山市| 安远县| 宝应县| 广汉市| 五大连池市| 峨眉山市| 盱眙县| 保德县| 柏乡县| 邹城市| 昔阳县| 东丽区| 辽源市| 留坝县| 湖北省| 宿州市| 仪征市| 安塞县| 临颍县| 巨鹿县| 班戈县| 句容市| 万山特区| 南城县| 游戏| 建阳市| 凤山市| 巢湖市| 永登县| 赣州市| 连平县| 石嘴山市| 双峰县|