码迷,mamicode.com
首页 > 其他好文 > 详细

tornado 如何传递函数到模板

时间:2014-08-07 13:09:00      阅读:204      评论:0      收藏:0      [点我收藏+]

标签: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) }}



可是,没有完整的例子!!

于是按自己的想法写了一下:

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)}}就可以了!!


tornado 如何传递函数到模板,布布扣,bubuko.com

tornado 如何传递函数到模板

标签:tornado传递函数到模板

原文地址:http://blog.csdn.net/smallfish1983/article/details/38415929

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!