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

資訊專欄INFORMATION COLUMN

template7入門教程及對它的一些看法

Developer / 1932人閱讀

摘要:是的內(nèi)置模板引擎,在此之前使用過,不過剛剛打開看了下,已經(jīng)停止更新,并且將要被所替代。如果需要進行一些條件判斷,則使用。我們就主要說一下不常用的或者其他模板引擎里沒有的一些功能。

template7是framework7的內(nèi)置模板引擎,在此之前使用過jquery-tmpl,不過剛剛打開github看了下,已經(jīng)停止更新,并且將要被JsRender所替代。妹的,JsRender又是什么鬼啊?扯遠(yuǎn)了,之前聽過別人關(guān)于jquery-tmpl模板引擎的技術(shù)分享,它的源碼加上一堆注釋才100多行。在此之前模板給我的概念是jsp那種,要與java后端一起配合使用的,后端用數(shù)據(jù)模型把值傳到前臺,前臺再通過${}獲取值。如果需要進行一些條件判斷,則使用jstl。如果前臺要異步局部刷新頁面,則用ajax來實現(xiàn),返回的數(shù)據(jù)以拼字符串的方式把DOM嵌入到原來的頁面,但是拼字符串這種方式實在坑爹,不僅寫來痛苦,維護起來也痛苦。后來就使用js動態(tài)添加HTML,然后再用js把數(shù)據(jù)填充進去。寫法有以下兩種:

  
    
  var template = document.getElementById("theTemplate").innerHTML ;

或:



var template = document.getElementById("theTemplate").value ;

這種寫法優(yōu)點是:

比拼字符串優(yōu)雅很多

瀏覽器不會讀取到就渲染,所以里面的img的src也不會自動獲取

缺點:

script標(biāo)簽里面不能直接寫變量,又需要頻繁的操作修改DOM。

可能是基于以上的缺點,引入了jquery-tmpl模板引擎,但我覺得前端模板的真正意義在于前后端分離,即無法通過controller把數(shù)據(jù)發(fā)送到view,只能以接口請求的形式得到數(shù)據(jù),但是HTML本身又沒有jstl或freemarker那樣獲取變量或者進行if判斷、each循環(huán)的功能,所以,需要有一種工具來進行功能的替代,這時前端模板引擎紛紛出現(xiàn),五花八門,像我們項目中有用到的underscore.js內(nèi)置的模板引擎,但是那個功能比較單一,畢竟模板引擎只是他的一部分,功能夠用就好。
而我們今天要說的template7,則是一個功能更為強大,更為全面的模板引擎,官方說它執(zhí)行速度也很快,但是到底快不快,比哪些快,我沒去研究,有興趣的可以自己拿幾種模板引擎對比下。

Template7還嵌入了handlebars的表達(dá)式{{#}}

    {{#each items}}
  • {{title}}
  • {{/each}}

其實個人不喜歡一個模板搞幾種表達(dá)式,不過猜測作者應(yīng)該是考慮到在多種情況下都可以使用,即{{}}可能在當(dāng)前的上下文中有了其他的用法或者含義,如果我模板也請也使用這個就會產(chǎn)生沖突,至于能有什么用法,不要問我,我不知道,但我知道jquery-tmpl模板中有兩種取變量值的寫法,${}{{=}}${}的寫法是和freemarker、jsp等模板的取值方法是一樣的,所以會產(chǎn)生混淆,所以一般用{{=}}

模板中我們經(jīng)常能見到的方法,這里就簡單的一筆帶過,相信看官網(wǎng)的介紹會更加明了。我們就主要說一下不常用的或者其他模板引擎里沒有的一些功能。

Template7有以下表達(dá)式語法:

Variables

{{title}} - plain variable. Outputs "title" variable in current context

{{../title}} - plain variable. Outputs "title" variable in parent context

{{../../title}} - plain variable. Outputs "title" variable in parent context of parent context

{{this}} - plain variable. Outputs variable equals to current context

{{person.name}} - plain variable. Outputs variable equals to "name" property of "person" variable in current context

{{../person.name}} - plain variable. The same but for parent context

{{@index}} - access to additional data variable. Such data variables could be used in helpers

Block expressions

{{#each}} - begin of block expression

{{else}} - begin of block inverse expression (where supported)

{{/each}} - end of block expression

{{#each reverse="true"}} - begin of block expression with passed reverse:true hash arguments

Helpers
Helpers could be plain expressions and block expressions:

{{join myArray delimiter=", "}} - execute "join" helper and pass there "myArray" variable of current context and delimiter:", "hash argument

以上比較少見的是{{../title}},{{this}},{{person.name}}{{@index}}這幾種寫法,那我們就舉個栗子(非糖炒)說一下:



 var context = {
                firstName: "John",
                lastName: "Doe",
                arr:  [
                    {
                    sex: "boy",
                    birthday:"1991-1-1"
                    },
                    {
                        sex: "girl",
                        birthday:"1991-2-2"
                    }
                ]
            };
    
輸出如下:        
Hello, my name is John Doe
boy=======1991-1-1=======John
girl=======1991-2-2=======John
----------------
girl=======1991-2-2
boy=======1991-1-1

到這里想必大家都已經(jīng)看明白了吧,如果寫成下面這樣,

{{#each arr}}
    
  • {{sex}}======={{birthday}}======={{firstName}}
  • {{/each}}

    {{firstName}}是無法取到值得,因為當(dāng)前一級是arr里面,往上一級才能或取到值。

    第二個:

    
    
    var context = {
                    people: ["John Doe", {test:"test"}],
                    person: {
                        name: "虛空假面"
                    }
                };
    //輸出結(jié)果:
    Here are the list of people i know:
    0======== ********John Doe
    1======== test ********[object Object]
    虛空假面

    下面說一說內(nèi)置的一些輔助方法:

    {{join myArray delimiter=", "}}

    這個也是很少見到,有什么用,怎么用?
    官方是這么說的:This plain helper will join Array items to single string with passed delimiter

    Genres: {{join genres delimiter=", "}}

    { genres: ["comedy", "drama"] } 輸出:

    Genres: comedy, drama

    這個方法有木有很像js中的join()方法,

    
    
    輸出:
    George,John,Thomas

    其實兩者的作用也是一樣的,都是把數(shù)組對象轉(zhuǎn)成字符串,并用指定符號隔開。

    {{#each}}...{{else}}...{{/each}}

    之前用過{{#if}}...{{else}}...{{/each}},但是見到{{#each}}...{{else}}...{{/each}}感覺一臉懵逼
    看栗子吧:

    Car properties:

      {{#each props}}
    • {{@key}}: {{this}}
    • {{else}}
    • No properties
    • {{/each}}

    obj:

      {{#each obj}}
    • {{@key}}: {{this}}
    • {{else}}
    • No properties
    • {{/each}}

    exp:

      {{#each exp}}
    • {{@key}}: {{this}}
    • {{else}}
    • No properties
    • {{/each}}
    var context = { props: { power: "150 hp", speed: "200 km/h", }, obj: {}, exp:false }; 輸出: Car properties: power: 150 hp speed: 200 km/h obj: No properties exp: No properties

    這下明白了吧,其實他就下面這種形式的縮寫。

      {{#if obj}} {{#each obj}}
    • {{@key}}: {{this}}
    • {{/each}} {{else}}
    • No properties
    • {{/if}}

    {{#unless}}...{{else}}...{{/unless}}

    這個跟if else相反,沒什么好說的,感覺有些雞肋,有了if else還造這玩意干啥?不懂

    {{#with}}...{{/with}}

    這個跟{{#each}}...{{/each}}差不多,也是個雞肋,對比栗子如下:

        

    with

    {{#with props}}

    Car has {{power}} power and {{speed}} maximum speed

    {{/with}}

    each

    {{#each props}}

    Car has {{this}} {{@key}}

    {{/each}} var context = { props: { power: "150 hp", speed: "200 km/h", } }; 輸出: with Car has 150 hp power and 200 km/h maximum speed each Car has 150 hp power Car has 200 km/h speed

    {{#variableName}}...{{/variableName}}

    If you pass a block expression with helper name that is in the
    expression context, then it will work like {{#each}} helper for this
    context if it is an Array, and will work like {{#with}} helper if it
    is an Object:

    以上是官方的解釋,也就是根據(jù)傳入數(shù)據(jù)的類型是對象還是數(shù)組自動的去執(zhí)行。

    數(shù)組:

      {{#people}}
    • {{name}} - {{age}} years old
    • {{/people}}

    對象:

    {{#props}}

    Car has {{power}} power and {{speed}} maximum speed

    {{/props}}

    其他

    {{#title}}

    {{this}}

    {{/title}} people: [ { name: "John Doe", age: 18 }, { name: "Mark Johnson", age: 21 } ], props: { power: "150 hp", speed: "200 km/h" }, title: "Friends" 輸出: 數(shù)組: John Doe - 18 years old Mark Johnson - 21 years old 對象: Car has 150 hp power and 200 km/h maximum speed 其他 Friends

    這個方法看起來挺好用,但是我覺得會導(dǎo)致程序讀起來不明確,出了錯也不容易排查,還是覺得雞肋。

    {{escape}}

    This plain helper returns escaped HTML string. It escapes only the following characters: < > " &

    這個方法用來把幾個特定的字符< > " &轉(zhuǎn)碼成HTML字符串,目前我還沒想到在什么場景下需要轉(zhuǎn)碼。

    {{title}}

    {{escape body}}

    { title: "Paragraphs", body: "We need to use

    tags to add paragraphs in HTML", }

    Paragraphs

    We need to use

    tags to add paragraphs in HTML

    {{js "expression"}}

    js表達(dá)式,我覺得這個方法還是比較有用的,之前曾遇到一個問題,通過API后臺傳過來一堆內(nèi)容,然后我把它全部填到模板里,但是,這些數(shù)據(jù)里有些內(nèi)容,比如文件大小,傳過來是字節(jié)的,我需要根據(jù)大小轉(zhuǎn)成KB,MB,GB等單位,這一步還好,但是計算出來往往小數(shù)點后好多位,比如3.222222MB,模板當(dāng)時用的jquery的,當(dāng)時就懵逼了,只能去找后端。但是如果模板能夠用js表達(dá)式的話,這個問題就能解決了。

    {{title}}

    Price: ${{js "this.price * 1.2"}}

    {{js "this.inStock ? "In Stock" : "Not in stock""}}

    {{js "this.number.toFixed(2)"}}

    title: "iPhone 6 Plus", price: 1000, inStock: true, number:2.22222 輸出: iPhone 6 Plus Price: $1200 In Stock 2.22

    {{#js_compare "expression"}}...{{/js_compare}}

    在我看來還不如if else用的順手,雞肋

    {{title}}

    Price: ${{price}}

    {{#js_compare "this.color === "white" && this.memory > 16"}}Not in stock{{else}}In stock{{/js_compare}}

    {{#if "this.color === "white" && this.memory > 16"}} Not in stock {{else}} In stock {{/if}}

    title: "iPhone 6 Plus", price: 1000, color: "white", memory: 32 iPhone 6 Plus Price: $1000 Not in stock Not in stock

    此外,template7還支持添加、刪除自定義helpers,即根據(jù)需要擴展自己需要的方法,感覺也沒啥卵用

    Template7.registerHelper(name, helper)
    
    Template7.unregisterHelper(name)

    name - string - helper name
    helper - function - helper function to handle passed context

    還有幾個不常用的方法,就不在說了,有興趣自己去官網(wǎng)看一下。
    總的來說,感覺template7里面重復(fù)的東西太多,之前有看過jquery-tmpl的源碼才不到100行,underscore.js內(nèi)置的模板好像70行以內(nèi)。而它500行左右,搞了一堆七七八八的內(nèi)容,但真正平常用到的只是少部分,如果讓我用的話,我可能會去掉里面的一些內(nèi)容再用,或者直接選用更加精簡的模板引擎。
    暫時先寫到這里,有時間,再補充一點對源碼的認(rèn)識。

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

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

    相關(guān)文章

    • template7入門教程及對它的一些看法

      摘要:是的內(nèi)置模板引擎,在此之前使用過,不過剛剛打開看了下,已經(jīng)停止更新,并且將要被所替代。如果需要進行一些條件判斷,則使用。我們就主要說一下不常用的或者其他模板引擎里沒有的一些功能。 template7是framework7的內(nèi)置模板引擎,在此之前使用過jquery-tmpl,不過剛剛打開github看了下,已經(jīng)停止更新,并且將要被JsRender所替代。妹的,JsRender又是什么鬼啊...

      kaka 評論0 收藏0
    • 前端常用插件、工具類庫匯總

      摘要:頁面調(diào)試騰訊開發(fā)維護的代碼調(diào)試發(fā)布,錯誤監(jiān)控上報,用戶問題定位。同樣是由騰訊開發(fā)維護的代碼調(diào)試工具,是針對移動端的調(diào)試工具。前端業(yè)務(wù)代碼工具庫。動畫庫動畫庫,也是目前通用的動畫庫。 本人微信公眾號:前端修煉之路,歡迎關(guān)注 本篇文章整理自己使用過的和看到過的一些插件和工具,方便日后自己查找和使用。 另外,感謝白小明,文中很多的工具來源于此。 彈出框 layer:http://layer....

      GitCafe 評論0 收藏0
    • Java內(nèi)存模型中volatile的內(nèi)存語義及對同步的作用

      摘要:一接觸內(nèi)存模型中的實例靜態(tài)變量以及數(shù)組都存儲在堆內(nèi)存中,可在線程之間共享。所以,在編碼上實現(xiàn)鎖的內(nèi)存語義,可以通過對一個變量的讀寫,來實現(xiàn)線程之間相互通知,保證臨界區(qū)域代碼的互斥執(zhí)行。 原文發(fā)表于我的博客 volatile關(guān)鍵字: 使用volatile關(guān)鍵字修飾的的變量,總能看到任意線程對它最后的寫入,即總能保證任意線程在讀寫volatile修飾的變量時,總是從內(nèi)存中讀取最新的值。以下...

      QLQ 評論0 收藏0
    • 軟件開發(fā)入門學(xué)習(xí)的個人看法

      摘要:興趣最后該說說的就是興趣問題如果你能對它真正感興趣如果要從事軟件開發(fā)又沒興趣的話趕緊先培養(yǎng)興趣去對看技術(shù)資料就想別人看武俠小說看球賽一樣的話再配合上面提到的幾點踏實先專后廣基礎(chǔ)扎實相信在這一行多少是可以做點東西出來的   踏實   偶然在網(wǎng)上看到《由C#風(fēng)潮想起的-給初學(xué)編程者的忠告》一文. 其中一個角度:避免浮躁,倡導(dǎo)踏實的學(xué)習(xí)方法,我是很認(rèn)同的,但總覺該文作者標(biāo)題-給初學(xué)編程者的忠...

      wh469012917 評論0 收藏0

    發(fā)表評論

    0條評論

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