成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

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

Honwhy / 3294人閱讀

摘要:在的模板中,功能還是很不少的,本講介紹模板語法先。然后在模板中,利用語句,依次顯示得到的列表中的元素。的代碼不變,只修改模板的代碼,重點理解模板中的語句寫法。這樣就是實現(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ào),無法完成比較復(fù)雜的數(shù)據(jù)傳遞。不僅僅是tornado,其它框架如Django等,模板都有比較“高級”的功能。在tornado的模板中,功能還是很不少的,本講介紹模板語法先。

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

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

先看例子

先寫一個python文件(命名為index.py),這個文件中有一個列表["python", "www.itdiffer.com", "[email protected]"],要求是將這個列表通過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","[email protected]"]  #定義一個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 %}

運行上面的程序:

>>> python index.py

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

在上面的例子中,用如下樣式,實現(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的代碼,重點理解模板中的語句寫法。



    
        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 "[email protected]" in info %}

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

{% end %}

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

模板中設(shè)置變量

廢話不說,直接上例子,因為例子是非常直觀的:



    
        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 "[email protected]" 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" %}的方式,將一個字符串賦給了變量var,在下面的代碼中,就直接引用這個變量了。這樣就是實現(xiàn)了模板中變量的使用。

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


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

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

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/37440.html

相關(guān)文章

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

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

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

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

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

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

    Freeman 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<