tornado要点记忆

Posted 200ML

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tornado要点记忆相关的知识,希望对你有一定的参考价值。

文件配置
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要点记忆的主要内容,如果未能解决你的问题,请参考以下文章

Python Tornado初学笔记之表单与模板

html 这个要点包含使用RightCare品牌创建浮动框的片段。

Tornado-Ajax

一张图帮你记忆,Spring Boot 应用在启动阶段执行代码的几种方式

Python Tornado框架(TCP层)

Linux知识要点(文件压缩打包解压缩)