您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
一、先安装
pip3 install tornado
二、小试牛刀
from tornado.web import Application
from tornado.web import RequestHandler
from tornado.ioloop import IOLoop
class MainHandler(RequestHandler):
def get(self, *args, **kwargs):
self.write("Hello World")
app = Application([
(r"/", MainHandler),
])
if __name__ == '__main__':
app.listen("5000")
print("http://127.0.0.1:5000")
IOLoop.instance().start()
三、路由配置
application = tornado.web.Application([
(r"/index", MainHandler),
(r"/story/([0-9]+)", StoryHandler), # 带了参数,需要在你的请求函数中写参数
])
application = tornado.web.Application([
(r"/index", MainHandler),
])
application.add_handlers(r"asdfasdf.org$",[ # 牛逼的绑定域名
(r'index/1.html/',MainHandler,),])
四、模板的那些事
在tornado.web.RequestHandler里面已经给你写好了一个render方法,你可以在本地写一个模板,然后用父类的方法去返回。
模板语言,也就是views.py给模板语言的传值,是通过render后面的{'k1':'v1'}传数据,或者用内置的方法。内置方法是用{% %}包裹起来的,而显示传来的数据要用{{ }}。但是,学过其他语言框架的人知道,如果用for循环的话,是用{% endfor %}来结束的。但在TORNADO里注意了!你要用{% end %}结束。if也是一样的!
如果要传数据的话,就加字典。self.render('layout.html',{"k1":'v1'})
如果在后台拿数据的话,就用{{k1}}来找到。
好了,今天就讲到这,给大家留个作业:
登录系统:
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。