"/js/template-web.js"
>
<
/script>
準備 art-template 模板
"tpl" type=
"text/html"
>
<
/script>
告訴模板引擎將哪個模板和哪個資料進行拼接
// 3. 告訴模板引擎將哪個資料和哪個模板進行拼接
// 1) 模板id 2) 資料 物件型別
// 方法的返回值就是拼接好的html字串
var html =
template
('tpl',)
<
/script>
將拼接好的 html 字串新增到頁面中
document.
getelementbyid
('container'
).innerhtml = html
通過模板語法告訴模板引擎, 資料和html字串要如何拼接
"tpl" type=
"text/html"
>
}}<
/h1>
<
/script>
完整**
<
!doctype html>
"en"
>
"utf-8"
>
"viewport" content=
"width=device-width, initial-scale=1.0"
>
document<
/title>
1. 將模板引擎的庫檔案引入到當前頁面 --
>
"/js/template-web.js"
>
<
/script>
<
/head>
"container"
>
<
/div>
2. 準備art-template模板 --
>
"tpl" type=
"text/html"
>
}}<
/h1>
<
/script>
// 3. 告訴模板引擎將哪個資料和哪個模板進行拼接
// 1) 模板id 2) 資料 物件型別
// 方法的返回值就是拼接好的html字串
var html =
template
('tpl',)
document.
getelementbyid
('container'
).innerhtml = html
<
/script>
<
/body>
<
/html>
art template模板引擎
1.模板語法 2.輸出 將某項資料輸出在模板中 3.原文輸出 如果資料中攜帶html標籤,預設模板引擎不會解析標籤,會將其轉義後輸出 4.條件判斷 在模板中可以根據條件來決定顯示哪塊html 5.迴圈 6.子模版 使用子模版可以將 公共區塊 頭部 底部 抽離到單獨的檔案中 7.模板繼承 使用模板繼承...
artTemplate模板引擎
使用乙個type text html 的script標籤存放模板 模板邏輯語法開始與結束的界定符號為 與 若 後面緊跟 號則輸出變數內容。template.render id,data var data var html template.render test data document.gete...
ArtTemplate模板引擎入門
天下武功,唯快不破 對的,arttemplate模板引擎最大的特點就是乙個 快 字,但是這套模板引擎官方github上的文件相當地精簡,雖然有完整的demo,但是說真的,也不知道是不是我智商不夠用,研究了一下午才把這套模板引擎應用到了我的web專案裡。id art container div id ...