基於Flask框架搭建視頻網站的學習日誌(二)

基於Flask框架搭建視頻網站的學習日誌(二)2020/02/02

1、初始化

全部的Flask程序都必須建立一個程序實例,程序實例是Flask類的對象html

from flask import Flask
app = Flask(__name__)

Flask 類的構造函數Flask()只有一個必須指定的參數,即程序主模塊或包的名字。在大多數程序中,python的__name__變量就是所需的值。(Flask這個參數決定程序的根目錄,以便稍後可以找到相對與程序根目錄的資源文件位置)——《Flask Web開發》python

2、路由和視圖函數

1.路由:flask

我的對路由的理解:程序實例須要知道每一個URL請求運行那些代碼,用route()修飾器把函數綁定到URL上瀏覽器

2.視圖函數:服務器

返回的響應能夠是字符串或者複雜的表單app

3、動態路由

變量規則 Flask中文文檔(https://dormousehole.readthedocs.io/en/latest/quickstart.html)

經過把 URL 的一部分標記爲<variable_name> 就能夠在 URL 中添加變量。標記的 部分會做爲關鍵字參數傳遞給函數。經過使用 <converter:variable_name>,能夠 選擇性的加上一個轉換器,爲變量指定規則。請看下面的例子:框架

@app.route('/user/<username>')
def show_user_profile(username):
    # show the user profile for that user
    return 'User %s' % escape(username)

@app.route('/post/<int:post_id>')
def show_post(post_id):
    # show the post with the given id, the id is an integer
    return 'Post %d' % post_id

@app.route('/path/<path:subpath>')
def show_subpath(subpath):
    # show the subpath after /path/
    return 'Subpath %s' % escape(subpath)

轉換器類型:函數

string (缺省值) 接受任何不包含斜槓的文本
int 接受正整數
float 接受正浮點數
path 相似 string ,但能夠包含斜槓(與string區分)
uuid 接受 UUID 字符串

! 注意:<converter:variable_name>中間不能有空格,格式要一致post

4、啓動服務器

if __name__ == '__main__':
    app.run(debug=True)

1.服務器啓動之後會進入輪詢,等待並處理請求(輪詢是用來解決服務器壓力過大的問題的。若是保持多個長鏈接,服務器壓力會過大,所以。專門創建一個輪詢請求的接口,裏面只保留一個任務id,只須要發送任務id,就能夠獲取當前任務的狀況。若是返回告終果,輪詢結束,沒有返回則等待一下子,繼續發送請求。 )學習

2.把debug參數設置爲True,啓用調試模式

3.在瀏覽器上輸入網址,若是是生成的初始網址,而且URL帶了變量,這時先會返回錯誤,由於生成的初始網址裏面沒有變量,例如應該加上/user/44654。其中的<>也要去掉

相關文章
相關標籤/搜索