摘要:最后只需要在需要的页面添加如下代码就行最后在模板还提供了一些其他的功能设置局部变量通过设置局部变量使用语句,使用函数的作用范围到最近的为止生成一个链接百度百度附录通过设置局部变量百度百度我是
1.ui_modules和ui_methods
第一步:新建文件uimethods.py ,这里的文件名是随意的只要在import时合法就行
def methods1(self): #注意这里要加上self return "ui_methods 1" def methods2(self): return "ui_methods 2"
新建文件uimodules.py,使用ui_modules需要继承UIModule类
from tornado.web import UIModule class UiModule(UIModule): def render(self, *args, **kwargs): return "我是ui_module"
第二步:在项目中导入
import util.uimethods import util.uimodules
第三步:在application配置参数,值是导入的模块名
ui_methods=util.uimethods, ui_modules=util.uimodules, #也可以写成字典的形式,其实在tornado内部就是解析成字典的形式 ui_modules={"UiModule":util.uimodules.UiModule}, class Calculation: def sum(self,a,b): return a+b class UiHandler(tornado.web.RequestHandler): def fun(self): return "hujing" def get(self): username = "haha" self.render("module.html", username=username, fun=self.fun, cal=Calculation )
第四步:在HTML中调用,导入的ui_modules需要使用module语句调用
{% module UiModule() %}
{{ methods1() }}
ui_modules和ui_methods提高了方法和类的复用性,可以在全局使用。
最后只需要在需要的页面添加如下代码就行
{% module Advertisement() %}
最后在模板还提供了一些其他的功能
set设置局部变量
{% set su = Count().sum %} {{ su(6,9) }}
{% set args = Count().args %} {% for a in args(1,2,3,4,5) %} {{ a }}
{% end %}
使用apply语句,使用函数的作用范围到最近的{%end%}为止
{% apply upper %} hello world
hahaha {% end %} {{ upper("hahaha") }}
linkify生成一个链接
{{ linkify("百度: http://www.baidu.com") }}
{%raw linkify("百度: http://www.baidu.com") %}
module.html
Module {{ username }}
{{ fun() }}
{{ cal().sum(6,9) }}
{% import time %} {{ time.time() }}
{% from util.mode_file import sub,upper,Count %} {{ sub(5,3) }}
{{ upper("wenmang") }}
{{ Count().url }}
{% raw Count().url %}
{{ Count().sum(6,9) }}
{{ Count.sum(6,9) }}
{{ Count().args(1,2,3,4) }}
{{ methods1() }}
{% module UiModule() %}
{% set su = Count().sum %} {{ su(6,9)}} {% set args = Count().args %} {% for a in args(1,2,3,4,5)%} {{ a }}
{% end %} {% apply upper %}
ren hao e
xieyulong bu e {% end %}
{{ upper("hahaha") }}
{{ linkify("百度:http://www.baidu.com") }}
{% raw linkify("百度:http://www.baidu.com") %}
uimodules.py
from tornado.web import UIModule class UiModule(UIModule): def render(self, *args, **kwargs): return "我是 ui_module"
uimethods.py
def methods1(self): return "ui_methods1" def methods2(self): return "ui_methods2"
start1.py
import tornado.httpserver import tornado.ioloop import tornado.options import tornado.web import util.uimodules import util.uimethod from tornado.options import define,options define("port",default=9000,help="run port",type=int) class Calculation: def sum(self,a,b): return a+b class UiHandler(tornado.web.RequestHandler): def fun(self): return "hujing" def get(self): username = "haha" self.render("module.html", username=username, fun=self.fun, cal=Calculation ) if __name__ == "__main__": tornado.options.parse_command_line() app = tornado.web.Application( handlers=[ (r"/ui",UiHandler), ], template_path="templates", static_path="static", ui_methods=util.uimethod, ui_modules=util.uimodules, # ui_modules={"UiModule":util.uimodules.UiModule}, debug=True, ) http_server = tornado.httpserver.HTTPServer(app) http_server.listen(options.port) tornado.ioloop.IOLoop.instance().start()
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/44640.html
摘要:从的开始分析的源码很容易可以看出,通过继承类定义自己的处理类,来处理请求。类的对象来处理的路由将于处理类组成,关联起来。调用的来将和绑定在一起初始化一个的对象,由其来处理请求的路由,来利用建立的规则。 从tornado的 Hello,world 开始分析tornado的源码 pythonimport tornado.ioloop import tornado.web class M...
摘要:译者说于年月日发布,该版本正式支持的关键字,并且用旧版本编译同样可以使用这两个关键字,这无疑是一种进步。其次,这是最后一个支持和的版本了,在后续的版本了会移除对它们的兼容。 译者说 Tornado 4.3于2015年11月6日发布,该版本正式支持Python3.5的async/await关键字,并且用旧版本CPython编译Tornado同样可以使用这两个关键字,这无疑是一种进步。其次...
阅读 2935·2021-10-08 10:18
阅读 703·2019-08-30 15:54
阅读 1033·2019-08-29 18:43
阅读 2405·2019-08-29 15:33
阅读 1274·2019-08-29 15:29
阅读 1581·2019-08-29 13:29
阅读 997·2019-08-26 13:46
阅读 1676·2019-08-26 11:55