文章列表标签: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|查询条件变量, 支持数组和字符串,如$wherelimit|最多查出文章数,如果分页开启,此设置无效order|文章排序方式page|分页参数,如果设置分页参数会自动分页relation|关联查询,支持categories和user,多个以英文逗号分隔pageVarName|分页后生成的分页变量名,只有设置分页参数时才有效categoryIds|分类 id,支持数组和字符串(英文逗号分开)

04-08 03:48