国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

[零基礎(chǔ)學(xué)python]模板中的語法

Honwhy / 3289人閱讀

摘要:在的模板中,功能還是很不少的,本講介紹模板語法先。然后在模板中,利用語句,依次顯示得到的列表中的元素。的代碼不變,只修改模板的代碼,重點(diǎn)理解模板中的語句寫法。這樣就是實(shí)現(xiàn)了模板中變量的使用。

  

"Come to me, all you that are weary and are carrying heavy burdens, and I will give you rest. Take my yoke upon you, and learn from me; for I am gentle and humble in heart, and you will find rest for your souls. For my yoke is easy, and my burden is light."(MATTHEW 12:28-30)

在[上一講]的練習(xí)中,列位已經(jīng)曉得,模板中{{placeholder}}可以接收來自python文件(.py)中通過self.render()傳過來的參數(shù)值,這樣模板中就顯示相應(yīng)的結(jié)果。在這里,可以將{{placeholder}}理解為占位符,就如同變量一樣啦。

這是一種最基本的模板顯示方式了。但如果僅僅如此,模板的功能有點(diǎn)單調(diào),無法完成比較復(fù)雜的數(shù)據(jù)傳遞。不僅僅是tornado,其它框架如Django等,模板都有比較“高級(jí)”的功能。在tornado的模板中,功能還是很不少的,本講介紹模板語法先。

模板中循環(huán)的例子

在模板中,也能像在python中一樣,可以使用某些語法,比如常用的if、for、while等語句,使用方法如下:

先看例子

先寫一個(gè)python文件(命名為index.py),這個(gè)文件中有一個(gè)列表["python", "www.itdiffer.com", "qiwsir@gmail.com"],要求是將這個(gè)列表通過self.render()傳給模板。

然后在模板中,利用for語句,依次顯示得到的列表中的元素。

#! /usr/bin/env python
#-*- coding:utf-8 -*-

import os.path
import tornado.httpserver
import tornado.ioloop
import tornado.web
import tornado.options

from tornado.options import define, options
define("port", default=8000, help="run on the given port", type=int)

class IndexHandler(tornado.web.RequestHandler):
    def get(self):
        lst = ["python","www.itdiffer.com","qiwsir@gmail.com"]  #定義一個(gè)list
        self.render("index.html", info=lst)                     #將上述定義的list傳給模板

handlers = [(r"/", IndexHandler),]

template_path = os.path.join(os.path.dirname(__file__), "temploop")  #模板路徑

if __name__ == "__main__":
    tornado.options.parse_command_line()
    app = tornado.web.Application(handlers,template_path)
    http_server = tornado.httpserver.HTTPServer(app)
    http_server.listen(options.port)
    tornado.ioloop.IOLoop.instance().start()

模板文件,名稱是index.html,在目錄temploop中。代碼如下:



    
        Loop in template
    
    
    

There is a list, it is {{info}}

I will print the elements of this list in order.

{% for element in info %}

{{element}}

{% end %}
{% for index,element in enumerate(info) %}

info[{{index}}] is {{element}} {% end %}

運(yùn)行上面的程序:

>>> python index.py

然后在瀏覽器地址欄中輸入:http://localhost:8000,顯示的頁面如下圖:

在上面的例子中,用如下樣式,實(shí)現(xiàn)了模板中的for循環(huán),這是在模板中常用到的,當(dāng)然,從python程序中傳過來的不一定是list類型數(shù)據(jù),也可能是其它類型的序列數(shù)據(jù)。

{% for index,element in enumerate(info) %}
    

info[{{index}}] is {{element}} {% end %}

特別提醒注意的是,語句要用{% end %}來結(jié)尾。在循環(huán)體中,用{{ element }}方式使用序列的元素。

模板中的判斷語句

除了循環(huán)之外,在模板中也可以有判斷,在上面代碼的基礎(chǔ)上,改寫一下,直接上代碼,看官想必也能理解了。

index.py的代碼不變,只修改模板index.html的代碼,重點(diǎn)理解模板中的語句寫法。



    
        Loop in template
    
    
    

There is a list, it is {{info}}

I will print the elements of this list in order.

{% for element in info %}

{{element}}

{% end %}
{% for index,element in enumerate(info) %}

info[{{index}}] is {{element}} {% if element == "python" %}

I love this language--{{element}}

{% end %} {% end %} {% if "qiwsir@gmail.com" in info %}

A Ha, this the python lesson of LaoQi, It is good! His email is {{info[2]}}

{% end %}

上面的模板運(yùn)行結(jié)果是下圖樣子,看官對(duì)比一下,是否能夠理解呢?

模板中設(shè)置變量

廢話不說,直接上例子,因?yàn)槔邮欠浅V庇^的:



    
        Loop in template
    
    
    

There is a list, it is {{info}}

I will print the elements of this list in order.

{% for element in info %}

{{element}}

{% end %}
{% for index,element in enumerate(info) %}

info[{{index}}] is {{element}} {% if element == "python" %}

I love this language--{{element}}

{% end %} {% end %} {% if "qiwsir@gmail.com" in info %}

A Ha, this the python lesson of LaoQi, It is good! His email is {{info[2]}}

{% end %}

Next, I set "python-tornado"(a string) to a variable(var)

{% set var="python-tornado" %}

Would you like {{var}}?

顯示結(jié)果如下:

看官發(fā)現(xiàn)了嗎?我用{% set var="python-tornado" %}的方式,將一個(gè)字符串賦給了變量var,在下面的代碼中,就直接引用這個(gè)變量了。這樣就是實(shí)現(xiàn)了模板中變量的使用。

Tornado的模板真的功能不少呢。不過遠(yuǎn)非這些,后面還有。敬請(qǐng)等待。


在我的個(gè)人網(wǎng)站上已經(jīng)將所有內(nèi)容整理好,并且及時(shí)修改,大家可以去瀏覽。

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/37440.html

相關(guān)文章

  • [基礎(chǔ)學(xué)python]使用tornado表單和模板

    摘要:在年時(shí),由網(wǎng)景公司的布蘭登艾克,在網(wǎng)景導(dǎo)航者瀏覽器上首次設(shè)計(jì)實(shí)作而成。為了取得技術(shù)優(yōu)勢(shì),微軟推出了,推出,與同樣可在瀏覽器上運(yùn)行。在表單中還要注意,有一個(gè),表示的是要將表單的內(nèi)容提交給路徑所對(duì)應(yīng)的程序來處理。 But when he heard this, he said:Those who are well have no need of a physician, but th...

    Berwin 評(píng)論0 收藏0
  • [基礎(chǔ)學(xué)python]從格式化表達(dá)式到方法

    摘要:上一講,主要介紹了用表達(dá)的一種輸出格式化表達(dá)式。現(xiàn)在我們就格式化方法做一個(gè)詳細(xì)一點(diǎn)的交代。關(guān)于格式化表達(dá)式和格式化方法,有的人進(jìn)行了不少比較,有的人說用這個(gè),有的人傾向用那個(gè)。不過,有人傳說格式化表達(dá)式可能在將來某個(gè)版本中廢除。 上一講,主要介紹了用%表達(dá)的一種輸出格式化表達(dá)式。在那一講最后又拓展了一點(diǎn)東西,拓展的那點(diǎn),名曰:格式化方法。因?yàn)樗R(shí)上是使用了str的format方法。 ...

    張紅新 評(píng)論0 收藏0
  • [基礎(chǔ)學(xué)Python]正規(guī)地說一句話

    摘要:語句,遍列列表字符串字典集合等迭代器,依次處理迭代器中的每個(gè)元素。與配合使用處理在程序運(yùn)行中出現(xiàn)的異常情況。表示此行為空,不運(yùn)行任何操作。在迭代器函數(shù)內(nèi)使用,用于返回一個(gè)元素。恭請(qǐng)到上瀏覽及時(shí)更新的教程零基礎(chǔ)學(xué) 小孩子剛剛開始學(xué)說話的時(shí)候,常常是一個(gè)字一個(gè)字地開始學(xué),比如學(xué)說餃子,對(duì)他/她來講,似乎有點(diǎn)難度,大人也聰明,于是就簡(jiǎn)化了,用餃餃來代替,其實(shí)就是讓孩子學(xué)會(huì)一個(gè)字就能表達(dá)。當(dāng)然...

    Freeman 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<