圆月山庄资源网 Design By www.vgjia.com
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,当你的内容里有中文或其他非英文字符时,这种方式就显的尤为重要。
运行效果如下:
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
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
更新日志
2024年11月08日
2024年11月08日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]