ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 特殊标签 * [ ] `标签介绍` 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='评论表';