溫馨提示×

溫馨提示×

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

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

Flask框架重定向,錯(cuò)誤顯示,Responses響應(yīng)及Sessions會(huì)話操作的示例分析

發(fā)布時(shí)間:2021-09-02 10:19:15 來源:億速云 閱讀:114 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下Flask框架重定向,錯(cuò)誤顯示,Responses響應(yīng)及Sessions會(huì)話操作的示例分析,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

具體如下:

重定向和錯(cuò)誤顯示

將用戶重定向到另一個(gè)端點(diǎn),使用redirect(), 要提前中止錯(cuò)誤請求,請使用abort()函數(shù)

from flask import abort, redirect, url_for
@app.route('/')
def index():
  return redirect(url_for('login'))
@app.route('/login')
def login():
  abort(401)
  this_is_never_executed()

默認(rèn)情況下,會(huì)為每個(gè)錯(cuò)誤代碼顯示黑白錯(cuò)誤頁面,如果要自定義錯(cuò)誤頁面,請使用errorhandler() 裝飾器.

Responses

  1. 如果返回了正確類型的響應(yīng)對象,則直接從視圖返回。

  2. 如果是字符串,則使用該數(shù)據(jù)和默認(rèn)參數(shù)創(chuàng)建響應(yīng)對象。

  3. 如果返回元組,則元組中的項(xiàng)可以提供額外信息。這樣的元組必須是這樣的形式,或者至少有一個(gè)項(xiàng)必須在元組中。該值將覆蓋狀態(tài)代碼,可以是其他標(biāo)頭值的列表或字典。(response, status, headers)或者是(response, headers)

如果要在視圖中獲取生成的響應(yīng)對象,可以使用make_response() 函數(shù)

假設(shè)你有如下視圖:

@app.errorhandler(404)
def not_found(error):
  return render_template('error.html'), 404

使用make_response()包含返回表達(dá)式,獲取響應(yīng)對象并修改它,然后返回它

@app.errorhandler(404)
def not_found(error):
  resp = make_response(render_template('error.html'), 404)
  resp.headers['X-Something'] = 'A value'
  return resp

Sessions會(huì)話追蹤

session在cookie的基礎(chǔ)上實(shí)現(xiàn)的,并以加密方式對cookie進(jìn)行簽名

要使用sessions,必須要設(shè)置私鑰,以下是簡單示例:

from flask import Flask, session, redirect, url_for, escape, request
app = Flask(__name__)
# Set the secret key to some random bytes. Keep this really secret!
app.secret_key = b'_5#y2L"F4Q8z\n\xec]/'
@app.route('/')
def index():
  if 'username' in session:
    return 'Logged in as %s' % escape(session['username'])
  return 'You are not logged in'
@app.route('/login', methods=['GET', 'POST'])
def login():
  if request.method == 'POST':
    session['username'] = request.form['username']
    return redirect(url_for('index'))
  return '''
    <form method="post">
      <p><input type=text name=username>
      <p><input type=submit value=Login>
    </form>
  '''
@app.route('/logout')
def logout():
  # remove the username from the session if it's there
  session.pop('username', None)
  return redirect(url_for('index'))

看完了這篇文章,相信你對“Flask框架重定向,錯(cuò)誤顯示,Responses響應(yīng)及Sessions會(huì)話操作的示例分析”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI