Python的Bottle框架中獲取制定cookie的教程
來(lái)源:易賢網(wǎng) 閱讀:1563 次 日期:2015-04-28 14:26:43
溫馨提示:易賢網(wǎng)小編為您整理了“Python的Bottle框架中獲取制定cookie的教程”,方便廣大網(wǎng)友查閱!

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

這篇文章主要介紹了Python的Bottle框架中獲取制定cookie的教程,主要是針對(duì)別的路徑而不是當(dāng)前頁(yè)面的cookie,需要的朋友可以參考下

這兩天為用bottle+mongodb寫(xiě)的一個(gè)項(xiàng)目加上登錄功能,無(wú)奈怎么都獲取不到保存的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

雖然文檔上沒(méi)有但是還有一種操作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

但是無(wú)論我用哪種方式操作我都無(wú)法獲取cookie,為什么呢.百思不得其解.但是我的一個(gè)處理文章點(diǎn)擊率的提醒了我,代碼如下:

@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():

# 存在則更新有效時(shí)間

response.COOKIES[artcookie] = True

response.COOKIES[artcookie]['max-age'] = 500

else:

# 不存在則更新文章查看次數(shù)

db.posts.update({"id":artid}, {"$inc":{"views":1}})

# 并設(shè)置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的,而且代碼沒(méi)有任何區(qū)別.唯一的區(qū)別就是用戶認(rèn)證是跳轉(zhuǎn)了頁(yè)面.所以我help了一下:

from bottle import response

help(response.set_cookie)

help的結(jié)果其中有兩個(gè)參數(shù)一個(gè)是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默認(rèn)只在當(dāng)前路徑下能讀取的到,所以要?jiǎng)e的頁(yè)面讀取到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']

這樣我們就能在別的路徑下訪問(wèn)我們?cè)O(shè)定的cookie.

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看網(wǎng)絡(luò)編程

扫描二维码关注易贤网公众号

易賢網(wǎng)手機(jī)網(wǎng)站地址:Python的Bottle框架中獲取制定cookie的教程
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼

【备考推荐】2025年事业单位联考系统精讲课,免费试看,配套资料包邮到家

關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)