为了账号安全,请及时绑定邮箱和手机立即绑定

tornado 实现简单的登入

标签:
Python

目标要求:

  1. 实现用户登入

  2. 使用render 实现路由跳转到html 登入界面,使用get_argument获取第一个值

  3. 使用到get 和post 请求方法

  4. 返回最后结果:欢迎某某登入

代码思路:

第一步:搭好整体框架

import  tornado.ioloop
import  tornado.web
import tornado.options   #让模块有自定义的模块
from tornado.options import define,options
import tornado.httpserver  #启动单线程的http服务

define('port',default=8080, help='run port', type=int)  #help

实现MainHandler类(目标)待完成
def make_app():
    return tornado.web.Application(
        handlers = [
        (r"/main", MainHandler)
    ],
    template_path = 'templates',
    debug= True
    )

if __name__=='__main__':
    tornado.options.parse_command_line()   #sys.argv
    app = make_app()
    http_server = tornado.httpserver.HTTPServer(app)
    http_server.listen(options.port)
    tornado.ioloop.IOLoop.instance().start()

第二步:在templates 目录下建立2个html,一个是实现登入的界面,一个是实现返回的界面

登入

https://img2.sycdn.imooc.com/5b818b4a0001b08409210429.jpg

返回使用到tornado模板表达式

https://img3.sycdn.imooc.com/5b81932900016e9807210463.jpg

template_path = 'templates',这个是固定的格式,templates目录也是固定的

第三步:

实现MainHandler类

class MainHandler(tornado.web.RequestHandler):
   def get(self):
       self.render('test.html')
   def post(self, *args, **kwargs):
       name = self.get_argument('name', 'OK')
       self.render('test_02.html',username = name)


第四步运行结果:

https://img4.sycdn.imooc.com/5b818cc30001593e03780112.jpg

完成


附加:

模板局部去掉转义raw

全体去掉转义在html上面添加{% autoescape None %}

如果需要局部转义{{ escape(test)}}

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 1
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消