在phpcms模板中我們使用pc標籤的action="position"來呼叫推薦位文章列表。
它並不支援直接指定獲取文章內容,因為推薦位中的文章資訊會單獨記錄在乙個資料表中並且並沒有記錄文章內容字段資訊。
雖然直接不行但是可以多個標籤靈活配合得到,這也是phpcms標籤的靈活之處。我先給出演示**:
方法1**——使用lists標籤:
<
li>
<
h3><
a href
="">
a>
h3>
<
div
class
="content"
>
div>
li>
方法2**——使用get萬能標籤:
<
li>
<
h3><
a href
="">
a>
h3>
<
div
class
="content"
>
div>
li>
以上**使用了兩層pc標籤巢狀迴圈遍歷讀取資料,主要思路是先使用action="position"標籤獲取被欄目下被推薦文章的id,然後再遍歷通過action="lists"或者是萬能標籤來獲取指定id的文章內容。
Mysql 獲取表資訊 獲取表詳情
查詢資料庫表結構 select table schema as 資料庫名 table name as 資料表名 create time as 建立時間 table comment as 描述 from information schema.tables where table schema 資料庫名...
獲取指定表的表結構
最近公司專案中需要做乙個使用excel員工匯入的需求,在匯入過程中,需要對資料核驗,就需要獲取相應的表結構的字段型別,及其型別精度。以下為 private mapgetcolumninfo else if map.get numeric precision null else if map.get ...
獲取表描述資訊
create view v table des asselect表名 o.name,表描述 ptb.value 字段序號 c.column id,欄位名 c.name,字段描述 isnull pfd.value n 主鍵 isnull idx.primarykey,0 可空 c.is nullabl...