1. 程式人生 > >bootstrap--如何將後臺的資料讀取到前臺

bootstrap--如何將後臺的資料讀取到前臺

1.首先,將基礎的頁面搭建成功,並在cms後臺管理新增相應的資料,注意:最終欄目列表和頻道封面以及文件一定要清楚,以免造成不必要的麻煩。

2.建立index.article  article_article  list_article 三個html  為了得到後臺的資料。

3.最好有index.html  head.html main.html footer.html 這是為了更好將主頁的內容區分開。

4.引入的話寫 

{dede:include filename="head.htm"/}
    {dede:include filename="main.htm"/}
    {dede:include filename="footer.htm"/}

這樣寫,將三個頁面連線起來

5.最重要的就是index.article article_article list_article 裡面的內容了

獲取資料的時候一定要使用相應的標籤

 如:ul標籤為:

	<ul>
                {dede:channel}
               {/dede:channel}
        </ul>

基本就是這些啦。。。。