99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀Python的Bottle框架中獲取制定cookie的教程
Python的Bottle框架中獲取制定cookie的教程
2017-10-05
收藏

Python的Bottle框架中獲取制定cookie的教程

這篇文章主要介紹了Python的Bottle框架中獲取制定cookie的教程,主要是針對別的路徑而不是當前頁面的cookie,需要的朋友可以參考下
這兩天為用bottle+mongodb寫的一個項目加上登錄功能,無奈怎么都獲取不到保存的cookie,文檔給出讓我們這樣操作cookie的代碼片段:    
@route('/login')
def login ():
   username = request .forms .get('username ')
   password = request .forms .get('password ')
   if check_user_credentials(username, password):
      response .set_cookie("account", username, secret= 'some-secret-key')
      return "Welcome %s!You are now logged in." % username
   else :
      return "Login failed."
 
@route('/restricted')
def restricted_area ():
   username = request .get_cookie("account", secret= 'some-secret-key')
   if username:
      return "Hello %s.Welcome back." % username

雖然文檔上沒有但是還有一種操作cookie的方式:
    
from bottle import request, response
 
@route('/login', method="POST")
def login():
  user = request.POST['user']
  passwd = request.POST['passwd']
 
  if check_user_right(user,passwd):
    response.COOKIES['account'] = user
  else:
    pass
 
@route('/admin')
def admin():
  user = request.COOKIES['user']
  if user:
    pass

但是無論我用哪種方式操作我都無法獲取cookie,為什么呢.百思不得其解.但是我的一個處理文章點擊率的提醒了我,代碼如下:    
@route('/archrives/:aid#\d+#')
def article_show(aid):
  db = dbconn.ConnDB()
  artid = int(aid)
  # 獲取客戶端ip
  remoteip = request.environ.get('REMOTE_ADDR')
 
  artcookie = remoteip+'ip'+aid
  print request.COOKIES.keys()
 
  # 判斷cookie是否存在
  if artcookie in request.COOKIES.keys():
    # 存在則更新有效時間
    response.COOKIES[artcookie] = True
    response.COOKIES[artcookie]['max-age'] = 500
  else:
    # 不存在則更新文章查看次數(shù)
    db.posts.update({"id":artid}, {"$inc":{"views":1}})
 
    # 并設置cookie
    response.COOKIES[artcookie] = True
    response.COOKIES[artcookie]['max-age'] = 500
 
  TEMPLATE['posts'] = getArtList({"id":artid})
  TEMPLATE.update(setTempVar())
 
  return template('article.html', TEMPLATE)

這里是可以正常獲取到cookie的,而且代碼沒有任何區(qū)別.唯一的區(qū)別就是用戶認證是跳轉了頁面.所以我help了一下:    
from bottle import response
help(response.set_cookie)

help的結果其中有兩個參數(shù)一個是path,和domain:
    
:param domain: the domain that is allowed to read the cookie.
  (default: current domain)
 :param path: limits the cookie to a given path (default: current path)

明顯bottle的cookie默認只在當前路徑下能讀取的到,所以要別的頁面讀取到cookie我們的代碼須改成如下:    
from bottle import request, response
 
@route('/login', method="POST")
def login():
  user = request.POST['user']
  passwd = request.POST['passwd']
 
  if check_user_right(user,passwd):
    response.COOKIES['account'] = user
    response.COOKIES['account']['path'] = '/admin'
  else:
    pass
 
@route('/admin')
def admin():
  user = request.COOKIES['user']

這樣我們就能在別的路徑下訪問我們設定的cookie.

數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師考試動態(tài)
數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調用 initGeetest 進行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調,回調的第一個參數(shù)驗證碼對象,之后可以使用它調用相應的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗服務器是否宕機 new_captcha: data.new_captcha, // 用于宕機時表示是新驗證碼的宕機 product: "float", // 產品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計時完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }