一些Tornado知识

static静态资源

1
2
3
4
5
settings = dict(
template_path=os.path.join(os.path.dirname(__file__),"../templates"),
static_path =os.path.join(os.path.dirname(__file__), "/data/static"),
debug=True,
)

假设在服务器上存在/data/static/other/a.txt文件,那么对应的路径url则为http://www.yoursite.com/static/other/a.txt

Tornado模板转义处理

在html页面的最上边加上

1
{% raw title %}

就不显示html标签了。

Share