Home  >  Article  >  CMS Tutorial  >  How to paginate dedecms

How to paginate dedecms

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-07-20 10:58:453326browse

How to paginate dedecms

1. Use arclist tag Ajax to realize paging on the DreamWeaver homepage

Must be on the homepage

<script language="javascript" type="text/javascript" src="{dede:global.cfg_cmsurl/}/include/dedeajax2.js"></script>

introduced in /head>

must be added
<script>
function multi(pagenum,tagid)
{
var taget_obj = document.getElementById(tagid);
var taget_obj_page = document.getElementById("page_"+tagid);
myajax = new DedeAjax(taget_obj,false,false,&#39;&#39;,&#39;&#39;,&#39;&#39;);
myajax.SendGet2("/plus/arcmulti.php?mtype=0&pnum="+pagenum+&#39;&tagid=&#39;+tagid);
myajax = new DedeAjax(taget_obj_page,false,false,&#39;&#39;,&#39;&#39;,&#39;&#39;);
myajax.SendGet2("/plus/arcmulti.php?mtype=1&pnum="+pagenum+&#39;&tagid=&#39;+tagid);
DedeXHTTP = null;
}
</script>

. The tagid and pagesize parameters must be included in the arclist tag. The first is the cache name, and the second is the number of single page entries.

{dede:arclist tagid=&#39;index&#39; pagesize=&#39;20&#39;}
<li><a href="[field:arcurl/]" >[field:title/]</a></li>
<p>[field:info/]...</p>
{/dede:arclist}

The arcpagelist tag must exist, and the cache parameter tagid must be declared and the cache parameter must be consistent with the tagid in arclist.

{dede:arcpagelist tagid=&#39;index&#39;/}

Related recommendations: "dedecms usage tutorial"

## 2. Cross-column ID to realize paging on Dreamweaver homepage

First you create a new "Homepage" column in the background

How to paginate dedecms

Set the homepage column

How to paginate dedecms

Just use the list template as a template. If you are skilled, you can design it into the template you want. For example, the list_index.htm used in the homepage of Aoiyou Design Waterfall Taobao Template is designed separately, so set the homepage template. You can set it to this, as shown below

How to paginate dedecms

Main points to note: (1) The cross ID can only write the last level column ID, which is the column to which your article belongs. id; (2) You cannot update using the home page. You need to use the update column HTML. The home page link address remains unchanged.

How to paginate dedecms

The paging of the Dreamweaver homepage created by the cross-column ID can be realized.

3. Free list to realize Dreamweaver homepage paging

Because free list is used to realize Dreamweaver homepage paging, the function of updating the homepage HTML in the background is useless. After the key is generated, the website must be generated once in the free list, otherwise the homepage of the website will be blank, so this method is not recommended.

The above is the detailed content of How to paginate dedecms. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to get in dedecmsNext article:How to get in dedecms