明霞山资源网 Design By www.htccd.com
这两天为用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:
# 不存在则更新文章查看次数
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的,而且代码没有任何区别.唯一的区别就是用户认证是跳转了页面.所以我help了一下:
from bottle import response help(response.set_cookie)
help的结果其中有两个参数一个是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.
标签:
Python
明霞山资源网 Design By www.htccd.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
明霞山资源网 Design By www.htccd.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。