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

資訊專欄INFORMATION COLUMN

[零基礎學python]模板中的語法

Honwhy / 3291人閱讀

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

  

"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)

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

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

模板中循環的例子

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

先看例子

先寫一個python文件(命名為index.py),這個文件中有一個列表["python", "www.itdiffer.com", "qiwsir@gmail.com"],要求是將這個列表通過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"]  #定義一個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,顯示的頁面如下圖:

在上面的例子中,用如下樣式,實現了模板中的for循環,這是在模板中常用到的,當然,從python程序中傳過來的不一定是list類型數據,也可能是其它類型的序列數據。

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

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

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

模板中的判斷語句

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

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 "qiwsir@gmail.com" in info %}

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

{% end %}

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

模板中設置變量

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



    
        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}}?

顯示結果如下:

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

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


在我的個人網站上已經將所有內容整理好,并且及時修改,大家可以去瀏覽。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/37440.html

相關文章

  • [基礎python]使用tornado表單和模板

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

    Berwin 評論0 收藏0
  • [基礎python]從格式化表達式到方法

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

    張紅新 評論0 收藏0
  • [基礎Python]正規地說一句話

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

    Freeman 評論0 收藏0

發表評論

0條評論

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