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

tornado 模板引擎

时间:2019-03-17 01:32:02      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:字典   方法   escape   end   html_   charset   定义   self   oct   

 在tornado的模板引擎中,有两种方式,UImethod与UImodule 自定义方法

在模板中调用方法:

  tornado:与Django一样使用{{}},但是对于for循环之类,Django以{% endfor%}结尾,而tornado以{% end%}结尾。调用字典或者列表,tornado使用list[0],而Django以list.0使用方法不一样。

  要想使用UImethod与UImodule,必须先早app里面的settings中注册:

  

import uimethod as ud
import uimodule as um
settings = {"template_path": ‘views‘,
‘cookie_secret‘: ‘ahsfkasjasfasd‘,
‘ui_methods‘: ud,
‘ui_modules‘: um,
}

然后再在模板中使用uimodule.py

from tornado.web import UIModule
from tornado import escape

class Test(UIModule):

    def render(self, *args, **kwargs):

        return <h1>ui_module</h1>‘  # 不转义
     # return escape.xhtml_escape(‘<h1>ui_module</h1>‘) 转义

uimethod.py def tag(request): return <h1>ui_method</h1>

模板:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    uimethod 自动转义:{{tag()}}
    uimethod 不转义:{% raw tag()%}
    uimodule:{% module Test()%}
    欢迎光临
</body>
</html>

 

tornado 模板引擎

标签:字典   方法   escape   end   html_   charset   定义   self   oct   

原文地址:https://www.cnblogs.com/wbdream/p/10544984.html

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