Python的Bottle框架中实现最基本的get和post的方法的教程


Posted in Python onApril 30, 2015

1、GET方式:
  

# -*- coding: utf-8 -*-
#!/usr/bin/python
# filename: GETPOST_test.py
# codedtime: 2014-9-20 19:07:04


import bottle

def check_login(username, password):
  if username == '123' and password == '234':
    return True
  else:
    return False

@bottle.route('/login')
def login():
  if bottle.request.GET.get('do_submit','').strip(): #点击登录按钮
    # 第一种方式(latin1编码)
##    username = bottle.request.GET.get('username','').strip() # 用户名
##    password = bottle.request.GET.get('password','').strip() # 密码

    #第二种方式(获取username\password)(latin1编码)
    getValue = bottle.request.query_string
##    username = bottle.request.query['username'] # An utf8 string provisionally decoded as ISO-8859-1 by the server
##    password = bottle.request.query['password'] # 注:ISO-8859-1(即aka latin1编码)
    #第三种方式(获取UTF-8编码)
    username = bottle.request.query.username   # The same string correctly re-encoded as utf8 by bottle
    password = bottle.request.query.password   # The same string correctly re-encoded as utf8 by bottle
    
    print('getValue= '+getValue,
       '\r\nusername= '+username,
       '\r\npassword= '+password) # test
    
    if check_login(username, password):
      return "<p> Your login information was correct.</p>"
    else:
      return "<p>Login failed. </p>"
  else:
    return ''' <form action="/login" method="get">
           Username: <input name="username" type="text" />
           Password: <input name="password" type="password" />
           <input value="Login" name="do_submit" type="submit">
          </form>
        '''

bottle.run(host='localhost', port=8083)

这里注意说一下Bottle编码的问题,只有第三种方式会将我们输入的字符如果是UTF-8重新编码为UTF-8,当你的内容里有中文或其他非英文字符时,这种方式就显的尤为重要。

运行效果如下:

Python的Bottle框架中实现最基本的get和post的方法的教程

2、POST方式:
 

# -*- coding: utf-8 -*-
#!/usr/bin/python
# filename: GETPOST_test.py
# codedtime: 2014-9-20 19:07:04


import bottle

def check_login(username, password):
  if username == '123' and password == '234':
    return True
  else:
    return False

@bottle.route('/login')
def login():
  return ''' <form action="/login" method="post">
         Username: <input name="username" type="text" />
         Password: <input name="password" type="password" />
         <input value="Login" type="submit">
        </form>
      '''

@bottle.route('/login', method='POST')
def do_login():
  # 第一种方式
#  username = request.forms.get('username')
#  password = request.forms.get('password')

  #第二种方式
  postValue = bottle.request.POST.decode('utf-8')
  username = bottle.request.POST.get('username')
  password = bottle.request.POST.get('password')

  
  if check_login(username, password):
    return "<p> Your login information was correct.</p>"
  else:
    return "<p>Login failed. </p>"

bottle.run(host='localhost', port=8083)

登录网站、提交文章、评论等我们一般都会用POST方式而非GET方式,那么类似于第二种方式的编码就很用用处,能够正确的处理我们在Form中提交的内容。而第一种则可能会出现传说中的乱码问题,谨记!!!

Python 相关文章推荐
Python中类的定义、继承及使用对象实例详解
Apr 30 Python
django通过ajax发起请求返回JSON格式数据的方法
Jun 04 Python
python实现猜单词小游戏
May 22 Python
python中的decorator的作用详解
Jul 26 Python
win8下python3.4安装和环境配置图文教程
Jul 31 Python
解决python中画图时x,y轴名称出现中文乱码的问题
Jan 29 Python
使用GitHub和Python实现持续部署的方法
May 09 Python
浅谈keras使用预训练模型vgg16分类,损失和准确度不变
Jul 02 Python
Python 实现一个计时器
Jul 28 Python
使用jupyter notebook运行python和R的步骤
Aug 13 Python
Pycharm添加虚拟解释器报错问题解决方案
Oct 13 Python
Python监听剪切板实现方法代码实例
Nov 11 Python
Python中使用Beautiful Soup库的超详细教程
Apr 30 #Python
Python中正则表达式的详细教程
Apr 30 #Python
详解在Python程序中使用Cookie的教程
Apr 30 #Python
处理Python中的URLError异常的方法
Apr 30 #Python
介绍Python的Urllib库的一些高级用法
Apr 30 #Python
python插入数据到列表的方法
Apr 30 #Python
Python的Urllib库的基本使用教程
Apr 30 #Python
You might like
微信公众平台天气预报功能开发
2014/07/06 PHP
PHP面向对象程序设计之命名空间与自动加载类详解
2016/12/02 PHP
php实现的支付宝网页支付功能示例【基于TP5框架】
2019/09/16 PHP
雄兵连第三季海报曝光,艾妮熙德成主角,蔷薇新造型
2021/03/09 国漫
IE与Firefox在JavaScript上的7个不同写法小结
2009/09/14 Javascript
.net,js捕捉文本框回车键事件的小例子(兼容多浏览器)
2013/03/11 Javascript
js正则表达式中test,exec,match方法的区别说明
2014/01/29 Javascript
微信小程序实战之运维小项目
2017/01/17 Javascript
js使用cookie实现记住用户名功能示例
2019/06/13 Javascript
Python获取任意xml节点值的方法
2015/05/05 Python
浅谈Python中copy()方法的使用
2015/05/21 Python
python3中int(整型)的使用教程
2017/03/23 Python
VTK与Python实现机械臂三维模型可视化详解
2017/12/13 Python
numpy使用技巧之数组过滤实例代码
2018/02/03 Python
详解TensorFlow查看ckpt中变量的几种方法
2018/06/19 Python
python 通过SSHTunnelForwarder隧道连接redis的方法
2019/02/19 Python
教你一步步利用python实现贪吃蛇游戏
2019/06/27 Python
python读取csv文件指定行的2种方法详解
2020/02/13 Python
python用WxPython库实现无边框窗体和透明窗体实现方法详解
2020/02/21 Python
python属于解释型语言么
2020/06/15 Python
Python Pandas list列表数据列拆分成多行的方法实现
2020/12/14 Python
韩国流行时尚女装网站:Dintchina(中文)
2018/07/19 全球购物
美国波西米亚风格精品店:South Moon Under
2019/10/26 全球购物
儿科主治医生个人求职信
2013/09/23 职场文书
大学生自我评价怎样写好
2013/10/23 职场文书
机电一体化自荐信
2013/12/10 职场文书
文字自荐书范文
2014/02/10 职场文书
追悼会主持词
2014/03/20 职场文书
信仰心得体会
2014/09/05 职场文书
民主评议党员登记表自我评价
2014/10/20 职场文书
《鸡兔同笼》教学反思
2016/02/19 职场文书
如何写一份具有法律效力的借款协议书?
2019/07/02 职场文书
Python 解决空列表.append() 输出为None的问题
2021/05/23 Python
MySQL中出现乱码问题的终极解决宝典
2021/05/26 MySQL
python_tkinter事件类型详情
2022/03/20 Python
Centos系统通过Docker安装并搭建MongoDB数据库
2022/04/12 MongoDB