本身用 art-template 有些年頭了,最近在培養團隊學習 art-template 使用,發現有一個痛點比較難解決。javascript
好比有一個模版,咱們能夠直接寫在頁面中,像這樣:html
<script id="appbtnTemp" type="text/html"> <div id="<%=id%>" class="appbtn" title="<%=title%>" appid="<%=appid%>" realappid="<%=realappid%>" type="<%=type%>"> <img src="<%=imgsrc%>" alt="<%=title%>" style="width:<%=appsize%>px;height:<%=appsize%>px;"> <span style="width:<%=appsize+10%>px;"><%=title%></span> </div> </script>
但若是這是個公用的模版,在不少頁面須要用到,那就不能直接寫在頁面中了,否則就得複製不少份了,那就只能寫到 js 文件裏,作爲一個公用函數。java
var appbtn = template.compile( '<div id="<%=id%>" class="appbtn" title="<%=title%>" appid="<%=appid%>" realappid="<%=realappid%>" type="<%=type%>">'+ '<img src="<%=imgsrc%>" alt="<%=title%>" style="width:<%=appsize%>px;height:<%=appsize%>px;">'+ '<span style="width:<%=appsize+10%>px;"><%=title%></span>'+ '</div>' );
這樣子雖然解決了公用的問題,但代碼就變得難以維護了,畢竟是在 js 文件裏寫 html 代碼,代碼高亮提示沒了,並且都是字符串拼接,若是模版有修改,將會是一個可怕的問題。jquery
那有沒有什麼解決辦法呢?個人第一個想法是把每一個模版都寫到獨立的文件裏,但在官網文檔裏看到瀏覽器版本不支持文件路徑讀取模版,那就本身改造下吧,讓瀏覽器版本也支持文件加載讀取模版。webpack
這裏個人大體思路是經過 jquery 的 $.ajax() 去獲取模版,讀取到模版而後用 template.compile() 把模版編譯成函數並儲存好,若是再次調用模版,則不用從新去獲取模版。git
$(function(){ var cache = {}; var renderFile = function(path, data){ var html; if(cache.hasOwnProperty(path)){ html = cache[path](data); }else{ $.ajax({ type: 'GET', url: path, dataType: 'text', async: false }).done(function(cb){ var render = template.compile(cb); html = render(data); cache[path] = render; }); } return html; } renderFile('test.art', {title: '測試1'}); });
下面是 test.art 文件es6
<div> <h1><%=title%></h1> </div>
代碼實現總體仍是很 easy 的,這樣修改以後,模版文件也能夠統一管理了,既不會和頁面混在一塊兒,也不會和 js 混在一塊兒。github
後續:web
在和 art-template 的做者交流後,做者給出兩點解決方案:ajax
一、若是用 webpack 結合 art-template-loader 就解決了這個問題了,它能夠根據須要自動打包模板(並且是編譯好的代碼,不包含模板引擎)
二、我建議你使用 es6,至少模板這裏能夠用 es6 書寫這樣能夠輕鬆的寫多行字符串