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


Posted in Python onApril 24, 2015

这两天为用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 相关文章推荐
python实现图片批量剪切示例
Mar 25 Python
Python中的迭代器漫谈
Feb 03 Python
对于Python中线程问题的简单讲解
Apr 03 Python
教大家使用Python SqlAlchemy
Feb 12 Python
深入理解Python中range和xrange的区别
Nov 26 Python
Python判断两个list是否是父子集关系的实例
May 04 Python
python hook监听事件详解
Oct 25 Python
python模块导入的细节详解
Dec 10 Python
在Python中构建增广矩阵的实现方法
Jul 01 Python
python实现控制COM口的示例
Jul 03 Python
Python 面向对象之封装、继承、多态操作实例分析
Nov 21 Python
opencv python 图片读取与显示图片窗口未响应问题的解决
Apr 24 Python
利用Python的装饰器解决Bottle框架中用户验证问题
Apr 24 #Python
在Python中使用mongoengine操作MongoDB教程
Apr 24 #Python
python使用arp欺骗伪造网关的方法
Apr 24 #Python
python使用wxPython打开并播放wav文件的方法
Apr 24 #Python
python使用PyGame播放Midi和Mp3文件的方法
Apr 24 #Python
python使用PyGame绘制图像并保存为图片文件的方法
Apr 24 #Python
python使用PIL缩放网络图片并保存的方法
Apr 24 #Python
You might like
php中动态调用函数的方法
2015/03/16 PHP
php反序列化长度变化尾部字符串逃逸(0CTF-2016-piapiapia)
2020/02/15 PHP
Javascript 中的 call 和 apply使用介绍
2012/02/22 Javascript
js+html+css实现鼠标移动div实例
2013/01/30 Javascript
果断收藏9个Javascript代码高亮脚本
2016/01/06 Javascript
javascript仿百度输入框提示自动下拉补全
2016/01/07 Javascript
概述BootStrap中role="form"及role作用角色
2016/12/08 Javascript
jquery ajax异步提交表单数据的方法
2017/10/27 jQuery
详解angular应用容器化部署
2018/08/14 Javascript
vue发送websocket请求和http post请求的实例代码
2019/07/11 Javascript
在RedHat系Linux上部署Python的Celery框架的教程
2015/04/07 Python
python实现简单神经网络算法
2018/03/10 Python
浅析Python四种数据类型
2018/09/26 Python
对python中词典的values值的修改或新增KEY详解
2019/01/20 Python
将python图片转为二进制文本的实例
2019/01/24 Python
Python的log日志功能及设置方法
2019/07/11 Python
python解析xml文件方式(解析、更新、写入)
2020/03/05 Python
13个Pandas实用技巧,助你提高开发效率
2020/08/19 Python
Python WebSocket长连接心跳与短连接的示例
2020/11/24 Python
Python3.9最新版下载与安装图文教程详解(Windows系统为例)
2020/11/28 Python
CSS3制作炫酷的自定义发光文字
2016/03/28 HTML / CSS
深入理解HTML5定时器requestAnimationFrame的使用
2018/12/12 HTML / CSS
椰子猫砂:CatSpot
2018/08/27 全球购物
会计专业自我鉴定范文
2013/10/06 职场文书
函授本科毕业生自我鉴定
2013/10/16 职场文书
公司年会搞笑主持词
2014/03/24 职场文书
庆元旦文艺演出主持词
2014/03/27 职场文书
2014年纪检监察工作总结
2014/11/11 职场文书
网络营销计划书
2015/01/17 职场文书
开票员岗位职责
2015/02/12 职场文书
自主招生自荐信怎么写
2015/03/24 职场文书
幼儿园百日安全活动总结
2015/05/07 职场文书
施工安全保证书
2015/05/09 职场文书
实习报告范文
2019/07/30 职场文书
SpringBoot整合JWT的入门指南
2021/06/29 Java/Android
Python OpenCV形态学运算示例详解
2022/04/07 Python