💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
**分页导航自定义标签** ## 语法结构 ~~~ {page 参数="值"} ~~~~ {/page} ~~~ ## 参数列表 > 分页号,以#page#代替 | 参数 | 默认值 | 说明 | | -- | -- | -- | | pageinfo | 空 | 分页配置数组,包含:total,size,page,pageurl | | total | 0 | 信息总数 | | limit | 10 | 每页显示数量 | | page | 1 | 当前分页号,默认第一页,支持变量 | | pageurl | 0 | 分页地址模板 | | return | data | 数据返回变量,默认 $data | > 当使用pageinfo参数的时候,total,limit,page,pageurl失效 返回的是一个数组,数组内容如下: ~~~ [ 'first' => array 数组,首页地址, 'prev' => array 数组,上一页地址, 'list_start' => array 数组,开始的第一页,第二页地址 , 'list' => array 数组,分页列表, 'list_end' => array 数组,末尾的倒是第二页,第一页地址, 'next' => array 数组,下一页地址, 'last' => array 数组,最后一页地址, ]; ~~~ ## 假设 > 信息总数1245,每页10条,当前是第20页的数据 ~~~ Array ( [first] => Array ( [1] => http://dev.1lwl.cn/index/index/page/1.html ) [prev] => Array ( [19] => http://dev.1lwl.cn/index/index/page/19.html ) [list_start] => Array ( [1] => http://dev.1lwl.cn/index/index/page/1.html [2] => http://dev.1lwl.cn/index/index/page/2.html ) [list] => Array ( [19] => http://dev.1lwl.cn/index/index/page/19.html [20] => http://dev.1lwl.cn/index/index/page/20.html [21] => http://dev.1lwl.cn/index/index/page/21.html [22] => http://dev.1lwl.cn/index/index/page/22.html ) [list_end] => Array ( [124] => http://dev.1lwl.cn/index/index/page/124.html [125] => http://dev.1lwl.cn/index/index/page/125.html ) [next] => Array ( [21] => http://dev.1lwl.cn/index/index/page/21.html ) [last] => Array ( [125] => http://dev.1lwl.cn/index/index/page/125.html ) ) ~~~