artTemplate的使用總結

2022-08-22 05:15:11 字數 438 閱讀 8328

2.現在是編寫乙個存放html標籤的編寫模板,使用裝載,裡面的id是你到時候將確認將資料傳給誰的繫結,詳情請看下面**

原聲語法就這種:

<%if (potics)%>

<%}%>

相當於就是把你所要用的原聲js拿<%%>包起來而已

3.然後就是渲染模板,下放**只是模仿的資料,如果小夥伴的資料是從後台獲取上來就把你從ajax獲取的data資料換上就好啦

var data = ;

var html = template('site_template', data);//這個就是用來連線編寫模板和渲染模板的

document.getelementbyid('wrap').innerhtml = html;//而這個是把連線好的html和資料傳到你想要把html放在的哪個標籤裡面

然後arttemplate的大概使用就介紹到這裡了

artTemplate的使用總結

使用原生語法,需要匯入template native.js檔案。在html中定義模板,注意模板的位置,不要放到被渲染區域,防止模板丟失。渲染資料到頁面 main panel html template main panel big sale template data 使用簡潔語法,匯入templa...

artTemplate使用筆記

一 1 引入template.js或者template.native.js template.js支援語法類似 template.native.js支援原生語法 2 建立模板 id tpl type text html script 3 函式template templateid,data 構建模板...

模板引擎art template的基本使用

資料 const template require art template const path require path const views path.join dirname,views 02.art const html template views,console.log html 一...