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

tornado要点记忆

时间:2017-02-06 10:59:33      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:指定   执行函数   blog   class   template   mod   set   跳转   stat   

文件配置
settings = {
    # 模版路劲配置
    ‘template_path‘:‘tpl‘,
    # 静态路劲配置 如css 和 js
    ‘static_path‘:‘static‘,
    #静态文件的前缀
    ‘static_url_prefix‘:‘/ssss/‘,
    # 自定义函数配置
    ‘ui_methods‘: md ,
    # 自定义类配置
    ‘ui_modules‘:mt,
}

html静态文件引入方法
<script href=‘{{ static_url("jquery-3.1.1.js")}}‘></script>

传送文字
self.write("Hello, world")

传送html文件
self.render(‘login.html‘)

跳转到指定后缀
self.redirect(‘/margin‘)

for循环 - 特殊语言
{% for item in obj%}
<li>{{ item }}</li>
{% end  %}

普通传参- 特殊语言
{{ nvp }}

执行函数 - 特殊语言
{{ func(nvp) }}

执行类 - 特殊语言
{% module custom() %}

  

tornado要点记忆

标签:指定   执行函数   blog   class   template   mod   set   跳转   stat   

原文地址:http://www.cnblogs.com/cloniu/p/6369132.html

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