1. 程式人生 > >handlebar JS模板使用筆記

handlebar JS模板使用筆記

jsonp spa ring handle 寫法 logs image hand 必須

直接上代碼:

(定義模板)

技術分享

(編譯註入)

技術分享

***知識點***

//數據必須為Json數據(強調:jsonp數據不行,和json是兩種數據,jsonp多了個函數)

遍歷模板寫法:

(1){{# test}} {{/ test}}

(2){{each test}} {{/each}}

(3){{#if test}} //if test不為空,模板渲染

     (模板渲染的區域)

     {{else}} //else test為空,模板渲染

     (模板渲染的區域)

   {{/if}}

handlebar JS模板使用筆記