在龙卷风中,如何在没有tornado.web.RequestHandler的类中使用static_url()?

时间:2012-05-22 05:13:13

标签: python tornado static-linking requesthandler

我正在使用Tornado,我想在模板中加载一些静态文件。现在我使用tornado.web.UIModule加载它们。但我得到了一些错误,其中static_url()未定义。所以我查阅了文档,发现这个函数是tornado.web.RequestHandler的方法。但是如何在我的课程中加载像这个函数的静态文件呢?

# _ * _ coding:utf-8 _ * _

import tornado.web
from tornado import template

class Header(tornado.web.UIModule):
"""docstring for Header"""
def render(self, hightlight = "index"):
    return self.render_string("header.html", hightlight = hightlight)

def css_files(self):
    css = [
        static_url("css/smoothness/jquery-ui-1.8.20.custom.css"),
        static_url("css/common.css"),
        static_url("css/jquery.jqplot.min.css"),
        static_url("css/blue/style.css"),
        static_url("css/jquery.vector-map.css")
    ]
    return css;

def javascript_files(self):
    javascript = [
        static_url("js/convert.color.js"),
        static_url("js/jquery-1.7.2.min.js"),
        static_url("js/jquery-ui-1.8.20.custom.min.js"),
        static_url("js/common.js"),
        static_url("js/jquery.jqplot.min.js"),
        static_url("js/plugins/jqplot.highlighter.min.js"),
        static_url("js/plugins/jqplot.cursor.min.js"),
        static_url("js/plugins/jqplot.dateAxisRenderer.min.js"),
        static_url("js/plugins/jqplot.canvasTextRenderer.min.js"),
        static_url("js/plugins/jqplot.canvasAxisLabelRenderer.min.js"),
        static_url("js/jquery.vector-map.js"),
        static_url("js/china-cn.js"),
        static_url("js/jquery.tablesorter.min.js"),
        static_url("js/charts.js")
    ]
    return javascript

def html_body(self):
    return "<!--[if lt IE 9]><script src=\"{{ static_url(\"js/excanvas.js\") }}\"></script><![endif]-->"

def embedded_javascript(self):
    return "<script>var current = null;</script>"

2 个答案:

答案 0 :(得分:1)

正如您已经提到的,static_urltornado.web.RequestHandler的方法,但您将其称为全局函数。

更改

static_url(...)

self.handler.static_url(...)

答案 1 :(得分:0)

你不需要。如果您提供相对路径(javascript_filescss_files,则Tornado会自动通过static_url运行。