4

我想编写一个自定义函数并将其传递给我的龙卷风模板。

def trimString(data): return data[0:20]然后把它推到我的龙卷风文件中。这应该允许我修剪字符串。

这可能吗?

谢谢。

4

3 回答 3

13

在文档中不是特别清楚,但是您可以通过在模块中定义此函数并将模块tornado.web.Application作为ui_methods参数传递给轻松地做到这一点。

IE:

在 ui_methods.py 中:

def trim_string(data):
    return data[0:20]

在 app.py 中:

import tornado.ioloop
import tornado.web

import ui_methods

class MainHandler(tornado.web.RequestHandler):
    def get(self):
        self.render("main.html")


urls = [(r"/", MainHandler)]
application = tornado.web.Application(urls, ui_methods=ui_methods)

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

在 main.html 中:

....
{{ trim_string('a string that is too long............') }}
....

Andy Boot 的解决方案也有效,但在每个模板中自动访问此类功能通常很不错。

于 2012-10-21T23:58:50.867 回答
6

您可以在 Tornado 中导入函数。我认为这是最干净的解决方案。在模板顶部只需执行以下操作:

{% import lib %}

以后你可以做

{{ trim_string(data)}}
于 2013-04-19T05:35:10.377 回答
5

您还可以将函数作为模板变量传递,如下所示:

 template_vars['mesage'] = 'hello'
 template_vars['function'] = my_function # Note: No ()

        self.render('home.html',
            **template_vars
        )

然后在你的模板中你这样称呼它:

 {{ my_function('some string') }}
于 2012-10-22T15:58:13.163 回答