# 特殊標簽
* [ ] `標簽介紹` cms:commentinfo,用于在[文檔](https://doc.fastadmin.net/docs/)頁顯示評論分頁信息。
* [ ] `使用范圍`:[文檔](https://doc.fastadmin.net/docs/)詳情頁。
*****
> 標簽參數:
| 名稱 | 介紹 | 必選 |
| --- | --- | --- |
| type | 分頁類型,支持`simple`和`full` | 是 |
>調用示例
```
{cms:commentinfo type="full" /}
```
#### fa_cms_comment表中的參考字段
```
CREATE TABLE `fa_cms_comment` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '會員ID',
`type` enum('archives','page','special') NOT NULL DEFAULT 'archives' COMMENT '類型',
`aid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '關聯ID',
`pid` int(10) NOT NULL DEFAULT '0' COMMENT '父ID',
`content` longtext COMMENT '內容',
`comments` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '評論數',
`ip` varchar(50) DEFAULT '' COMMENT 'IP',
`useragent` varchar(255) DEFAULT '' COMMENT 'User Agent',
`subscribe` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '訂閱',
`createtime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '創建時間',
`updatetime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新時間',
`deletetime` int(10) DEFAULT NULL COMMENT '刪除時間',
`status` enum('normal','hidden') NOT NULL DEFAULT 'normal' COMMENT '狀態',
PRIMARY KEY (`id`),
KEY `post_id` (`aid`,`pid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COMMENT='評論表';
- 介紹
- 標簽手冊
- 全局標簽
- block標簽
- config標簽
- execute標簽
- query標簽
- breadcrumb標簽
- blocklist標簽
- 欄目標簽
- channellist標簽
- channel標簽
- nav標簽
- 文章標簽
- arclist標簽
- archives標簽
- prevnext標簽
- 專題
- speciallist標簽
- special標簽
- 公共參數
- common參數
- include引用
- 單頁
- spagelist標簽
- page標簽
- spageinfo標簽
- 特殊標簽
- tagslist標簽
- tags標簽
- commentlist標簽
- commentinfo標簽
- diyform標簽
- 模板特殊標簽
- 列表頁面
- pagelist標簽
- pageinfo標簽
- pagefilter標簽
- pageorder標簽
- pagelist的相關排序
- 新功能
- 后端新增代碼
- 模板使用
- 二級導航功能
- 共用banner功能
- 后臺站點配置添加編輯器