评论系统可以灵活的使用在系统各类模块中,使用步骤如下:
1、引用评论视图
在对应的页面直接引入 : comments_include.php(视图)
<?php $graceCommentsIndex = 'doc_'.$this->article['article_id']; include 'comments_include.php'; ?>
2、正确的配置 $graceCommentsIndex 变量
$graceCommentsIndex 代表了评论对应的当前文章(任何内容)的唯一性索引,如:
文章详情页面 : $graceCommentsIndex = 'art_文章id'; 商品详情页面 : $graceCommentsIndex = 'product_商品id';
说明
配置好 $graceCommentsIndex 后评论系统即可正常工作,系统会自动完成评论查询、提交等相关的工作。