文章列表标签:portal:articles使用详解

@高效码农  April 7, 2019

文章列表标签:portal:articles使用详解

标签:<portal:articles></portal:articles>
作用:文章列表标签,可调用文章列表
用法示例:

<portal:articles item="vo" where="$where" order="post.create_time DESC" page="$page"
                         relation="categories"
                         categoryIds="$category.id"
                         returnVarName="articles_data">
 .. HTML ..
 </portal:articles>

标签属性:

标签属性名含义
where查询条件变量, 支持数组和字符串,如$where
limit最多查出文章数,如果分页开启,此设置无效
order文章排序方式
page分页参数,如果设置分页参数会自动分页
relation关联查询,支持categoriesuser,多个以英文逗号分隔
pageVarName分页后生成的分页变量名,只有设置分页参数时才有效
categoryIds分类 id,支持数组和字符串(英文逗号分开)

具体使用实例:https://www.kancloud.cn/thinkcmf/doc/289814



评论已关闭