13.Tornado_模板语法的使用

1.概述

在模板中使用Python代码,Tornado模板是被python表达式和控制语句标记的简单文本文件。
使用时主要有3种方式

  1. 填充表达式
  2. 控制流语句
  3. 提供静态文件

2.测试代码展示

2.1html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h3>变量的使用</h3>
    {{args}} <br>
    <!-- dict字典的使用 -->
    <h5>dict字典的使用 </h5>
    {{dict1}} === {{dict1['name']}} ==== {{dict1.get('name')}} <br>
    
    <!-- 列表的使用 -->
    <h5>列表的使用</h5>
    {{list1}} === {{list1[0]}} === {{list1[1:3]}}

    <h5>逻辑块的使用:</h5>
    {% for i in list1 %}
        {% if i != 'macbook pro'%}
            {{i}} <br>
        {% end %}
    {% end %}

    <h5>提供静态文件</h5>
    <img src="{{static_url('img/1.jpg')}}">
    </body>
</html>

2.2python

from tornado import web,ioloop, template
from tornado.web import RequestHandler


class IndexHandler1(RequestHandler):
    def get(self):
        args = '变量1'
        dict1 = {'name':'笔记本','type':'APPLE'}
        list1 = ['macbook pro', 'macbook air','ipad']
        self.render('index13_1.html',args = args, dict1 = dict1, list1 = list1)


if __name__ == '__main__':
    app = web.Application([
        ('/index1/?',IndexHandler1)
        ],
    debug=True, template_path = './templates/', static_path = './static/') # 设置查找路径
    app.listen(8000)
    ioloop.IOLoop.current().start()

3.效果展示

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

想成为数据分析师的开发工程师

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值