首页 > 代码库 > tornado 如何传递函数到模板
tornado 如何传递函数到模板
官方文档是这么写的
Translating directly to Python means you can apply functions to expressions easily, like the escape() function in
the examples above. You can pass functions in to your template just like any other variable (In a RequestHandler,
override RequestHandler.get_template_namespace):
### Python code
def add(x, y):
return x + y
template.execute(add=add)
### The template
{{ add(1, 2) }}
可是,没有完整的例子!!
在模板中直接使用{{add(1,2)}}就可以了!!
Translating directly to Python means you can apply functions to expressions easily, like the escape() function in
the examples above. You can pass functions in to your template just like any other variable (In a RequestHandler,
override RequestHandler.get_template_namespace):
### Python code
def add(x, y):
return x + y
template.execute(add=add)
### The template
{{ add(1, 2) }}
可是,没有完整的例子!!
于是按自己的想法写了一下:
class MonitorEditHandler(tornado.web.RequestHandler): #删除监控主机记录 def get(self, *args, **kwargs): def add(a, b) return a+b with open('./static/hosts', 'rb+') as hosts: hosts = hosts.read() self.render( "monitor/monitor_edit.html", hosts=hosts, add = add )
在模板中直接使用{{add(1,2)}}就可以了!!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。