python_way ,day22 tonardo

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_way ,day22 tonardo相关的知识,希望对你有一定的参考价值。

python_way day22

1.tonardo


 

一、tonardo:

 

#!/usr/bin/env python3
# Created by han on 2016/10/23
import os, sys
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
import tornado.ioloop
import tornado.web
USER_INFO = []


class MainHadler(tornado.web.RequestHandler):
def get(self):
self.write("hello,word") #相当于django的HTTPResponse


class CmdbHander(tornado.web.RequestHandler): #tornado内部使用反射来找到类中对应的方法
def get(self):
# self.write("cmdb")
self.render("index.html")

def post(self): #以post方式请求,
user = self.get_argument("user") #获取post请求的信息
pwd = self.get_argument("password")
USER_INFO.append({"u": user, "p": pwd})
self.redirect(‘/home‘) #跳转



class HomeHadler(tornado.web.RequestHandler):
def get(self):
self.render("home.html", user_info_list = USER_INFO) #模板渲染


#源码中的反射:
# obj = CmdbHander()
# func = getattr(obj, "get")
# func()


#配置模板路径
settings = {
"template_path":"template", #自定义页面放置位置
"static_path": "static", #自定义静态文件放置位置,定义好以后在html页面中写上link标签引入静态文件才能生效
}

application = tornado.web.Application([
(r"/main", MainHadler),
], **settings) #只需要在application这里增加setttings这个配置

application.add_handlers("cmdb.old.com",[
(r"/home", HomeHadler),
])

application.add_handlers("cmdb.old.com",[
(r"/main", CmdbHander),
])

if __name__ == "__main__":
application.listen(8888)
tornado.ioloop.IOLoop.instance().start()

1、从请求头中获取请求方式:

 技术分享

2、html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>
hello HOME
</h1>
<ul>
<!--模板语言-->
{% for item in user_info_list %}
<li>
{{item[‘u‘]}}
</li>
<li>
{{ item.get("p","default")}}
</li>
{% end %} <!--注意end结尾,不再是endfor了-->
</ul>
</body>
</html>

  

 

 

















































































以上是关于python_way ,day22 tonardo的主要内容,如果未能解决你的问题,请参考以下文章

python_way,day4

python_way ,day25 wmi

python_way ,day2 字符串,列表,字典,时间模块

python_way day18 html-day4, 模板

python_way day16 JQuary

python_way day14 HTML-day5 (form表单验证,)