1. <#if>標籤 邏輯判斷符號衝突解決
兩種方法 :
用符號代替,> gt, >= gte ,< lt , <= lte 例: <#if x gt y>
加括號 <#if(x>y)>
2.使用例子:
<html
>
<
head
>
<
meta
charset
="utf-8"
>
<
link
href
=""rel="stylesheet"
>
head
>
<
body
>
<
div
class
="container"
>
<
div
class
="row clearfix"
>
<
div
class
="col-md-12 column"
>
<
table
class
="table table-bordered"
>
<
thead
>
<
tr>
<
th>訂單id
th>
<
th>姓名
th>
<
th>手機號
th>
<
th>位址
th>
<
th>金額
th>
<
th>訂單狀態
th>
<
th>支付狀態
th>
<
th>建立時間
th>
<
th colspan
="2"
>操作
th>
tr>
thead
>
<
tbody
>
<
#list
orderdtopage.content as orderdto
>
<
tr>
<
td>$
td>
<
td>$
td>
<
td>$
td>
<
td>$
td>
<
td>$
td>
<
td>$
td>
<
td>$
td>
<
td>$
td>
<
td>詳情
td>
<
td>刪除
td>
tr>
#list
>
tbody
>
table
>
div>
<
div
class
="col-md-12 column"
>
<
ul class
="pagination pull-right"
>
<
#if
currentpage lte 1
>
<
li class
="disabled"
>
<
a href
="#"
a>
li>
<
#else
>
<
li>
<
a href
="/sell/seller/order/list?page=$&size=$"
a>
li>
#if>
<
#list
1..orderdtopage.totalpages as index
>
<
#if
index
==currentpage
>
<
li class
="disabled"
>
<
a href
="/sell/seller/order/list?page=$&size=$"
>$
a>
li>
<
#else
>
<
li>
<
a href
="/sell/seller/order/list?page=$&size=$"
>$
a>
li>
#if>
#list
>
<
#if
currentpage gte orderdtopage.totalpages
>
<
li class
="disabled"
>
<
a href
="#"
a>
li>
<
#else
>
<
li>
<
a href
="/sell/seller/order/list?page=$&size=$"
a>
li>
#if>
ul>
div>
div>
div>
body
>
html
>
兩種方法 :
用符號代替,> gt, >= gte ,< lt , <= lte 例: <#if x gt y> ...加括號 <#if(x>y)>
freemarker生成靜態頁面
org.junit.test public void test01 writer out new outputstreamwriter new fileoutputstream webroot html test.html utf 8 輸出流 t.process root,out 動態載入root中...
HTML頁面的基本資訊
1 python中生成的html頁面,每一段的基本解釋,以及header中的應用 2 body中的應用 2.2 標題標籤 大小順序是1最大 2.3 段落標籤 段落1放假了 用f12檢查可以發現,通過標籤寫的可以用顏色展示出來,表示是被處理過的,就是p標籤 換行標籤 在後續的換行使用中,除了br也可以...
Freemarker商品頁面靜態化
靜態化資源,不需要tomcat容器 通過nginx提供http服務,就可以訪問 輸出檔案路徑,不需要在工程中,定義乙個外部路徑 輸出檔名稱,商品id html 比如,京東的每乙個商品詳情頁 架構設計 靜態頁面生成 通過activemq,監聽商品的新增事件 在新增商品的時候,生成商品的靜態頁面 專案部...