如果按照服務(wù)器數(shù)據(jù)列表那樣去渲染數(shù)據(jù)的話,碰到復(fù)雜功能編碼就會(huì)變得很復(fù)雜,并且由于要修改字符串中的內(nèi)容箩溃,沒有編輯器提示后期維護(hù),加新功能(例如咱們給上傳碌嘀、刪除按鈕注冊click事件)也變得不方便涣旨,所以art-template模板引擎就能解決此問題
art-template官網(wǎng)
http://aui.github.io/art-template/zh-cn/docs/index.html
art-template在線地址
可以在html頁面中 通過
<script src="https://unpkg.com/art-template/lib/template-web.js"></script>
導(dǎo)入
https://unpkg.com/art-template/lib/template-web.js
art-template 標(biāo)準(zhǔn)語法
{{value}} // 輸出value變量的值
{{data.key}} // 輸出data對象中key屬性的值
{{data['key']}} // 輸出data對象中key屬性的值
{{a ? b : c}} // 三元運(yùn)算符
{{a || b}} // 邏輯或運(yùn)算
{{a + b}} // 算術(shù)運(yùn)算符
art-template用法步驟
art-template體驗(yàn)
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- 1.0 引入模板引擎 -->
<script src="./libs/template-web.js"></script>
</head>
<body>
<h1>看控制臺(tái)輸出</h1>
<!-- 2.0 定義模板 -->
<!-- {{ 變量 }} 坑位經(jīng)過模板引擎處理,自動(dòng)變成變量的數(shù)據(jù) -->
<script type="text/html" id="t1">
<h1>你好{{ aa }}</h1>
</script>
<!-- 3.0 調(diào)用模板 -->
<script>
// 調(diào)用
// template("模板的id", { 變量: 數(shù)據(jù) })
const res = template('t1', { aa: 111 })
console.log(res)
console.log(typeof res) // string
</script>
</body>
</html>
循環(huán)語法
{{each target}}
{{$index}} {{$value}}
{{/each}}
// 說明:target 支持 array(數(shù)組) 與 object(對象) 的迭代