art template中的條件判斷語句

2021-10-07 08:58:25 字數 975 閱讀 6759

首先使用node匯入art檔案

const template =

require

('art-template');

const path =

require

('path');

//拼接路徑

const route = path.

join

(__dirname,

'02.art');

const html =

template

(route,

)console.

log(html)

;

具體的判斷語法

<

!doctype html>

"en"

>

"utf-8"

>

"viewport" content=

"width=device-width, initial-scale=1.0"

>

"x-ua-compatible" content=

"ie=edge"

>

document<

/title>

<

/head>

<

!-- 標準語法的條件判斷語句--

>

}<

!-- name 只有是fj的時候 才會指向12行** --

>}}

<

!-- 多分支語句的寫法--

>}}

<

!-- 原始語法的寫法--

>

<%if

(name ==

'wwx'

)else

if(love ==

'fj')%

>

<

/body>

<

/html>

模板引擎art template中的模板繼承

1.js端 const template require art template const path require path const views path.join dirname,views 05.art 使用模板引擎 const html template views,console....

模板引擎art template中的模板配置

1.js const template require art template const dateformat require dateformat const path require path const views path.join dirname,views 06.art 設定模板的根...

artTemplate的使用總結

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