### 评论组件
[上一页](# "上一页")[下一页](# "下一页")
显示评论组件:
~~~
{:Comments("posts",$object_id)}
<!-- 评论文章表里的某个id为$object_id的文章-->
~~~
Comments方法说明:
参数1:评论内容所在的表,不带表前缀的表名称,如sp_posts应该改为“posts”;
参数2:评论内容的id:
参数3:数组,目前支持tpl参数,如array("tpl"=>"comment_custom"),这样设置就会加载模板目录Comment/coment_custom.html这个模板。
评论模板:
默认评论模板文件:Comment/comment.html
~~~
<br>
<h3>评论</h3>
<div class="comment-area">
<hr>
<form class="form-horizontal comment-form" action="{:u('comment/comment/post')}" method="post">
<div class="control-group">
<div class="comment-postbox-wraper">
<textarea class="form-control comment-postbox" placeholder="Write your comment here" style="min-height:90px;" name="content"></textarea>
</div>
</div>
<div class="control-group">
<button type="submit" class="btn pull-right btn-primary J_ajax_submit_btn"><i class="fa fa-comment-o"></i> 发表评论</button>
</div>
<input type="hidden" name="post_table" value="{:sp_authencode('posts')}"/>
<input type="hidden" name="post_id" value="{$post_id}"/>
<input type="hidden" name="to_uid" value="0"/>
<input type="hidden" name="parentid" value="0"/>
</form>
<script class="comment-tpl" type="text/html">
<div class="comment" data-username="{$user.user_nicename}" data-uid="{$user.id}">
<a class="pull-left" href="{:U('user/index/index',array('id'=>$user['id']))}">
<img class="media-object avatar" src="{:U('user/public/avatar',array('id'=>$user['id']))}" class="headicon"/>
</a>
<div class="comment-body">
<div class="comment-content"><a href="{:U('user/index/index',array('id'=>$user['id']))}">{$user.user_nicename}</a>:<span class="content"></span></div>
<div><span class="time">刚刚</span> <a onclick="comment_reply(this);" href="javascript:;"><i class="fa fa-comment"></i></a></div>
</div>
<div class="clearfix"></div>
</div>
</script>
<script class="comment-reply-box-tpl" type="text/html">
<div class="comment-reply-submit">
<div class="comment-reply-box">
<input type="text" class="textbox" placeholder="回复">
</div>
<button class="btn pull-right" onclick="comment_submit(this);">回复</button>
</div>
</script>
<hr>
<div class="comments">
<foreach name="comments" item="vo">
<div class="comment" data-id="{$vo.id}" data-uid="{$vo.uid}" data-username="{$vo.full_name}" id="comment{$vo.id}">
<a class="pull-left" href="{:U('user/index/index',array('id'=>$vo['uid']))}">
<img class="media-object avatar" src="{:U('user/public/avatar',array('id'=>$vo['uid']))}" class="headicon"/>
</a>
<div class="comment-body">
<div class="comment-content"><a href="{:U('user/index/index',array('id'=>$vo['uid']))}">{$vo.full_name}</a>:<span>{$vo.content}</span></div>
<div><span class="time">{:date('m月d日 H:i',strtotime($vo['createtime']))}</span> <a onclick="comment_reply(this);" href="javascript:;"><i class="fa fa-comment"></i></a></div>
<if condition="!empty($vo['children'])">
<foreach name="vo.children" item="voo">
<div class="comment" data-id="{$voo.id}" data-uid="{$voo.uid}" data-username="{$voo.full_name}" id="comment{$voo.id}">
<a class="pull-left" href="{:U('user/index/index',array('id'=>$voo['uid']))}">
<img class="media-object avatar" src="{:U('user/public/avatar',array('id'=>$voo['uid']))}" class="headicon"/>
</a>
<div class="comment-body">
<div class="comment-content"><a href="{:U('user/index/index',array('id'=>$voo['uid']))}">{$voo.full_name}</a>:<span>回复 <a href="{:U('user/index/index',array('id'=>$voo['to_uid']))}">{$parent_comments[$voo['parentid']]['full_name']}</a> {$voo.content}</span></div>
<div><span class="time">{:date('m月d日 H:i',strtotime($voo['createtime']))}</span> <a onclick="comment_reply(this);" href="javascript:;"><i class="fa fa-comment"></i></a></div>
</div>
<div class="clearfix"></div>
</div>
</foreach>
</if>
</div>
<div class="clearfix"></div>
</div>
</foreach>
</div>
</div>
~~~
[上一页](# "上一页")[下一页](# "下一页")
- 序言
- 序言
- 关于ThinkCMF
- 关于BootStrap
- 基础
- ThinkCMF V版本和X版本的区别
- 开发规范
- 调试模式
- 如何获取
- 环境要求
- 安装使用
- 备份与恢复
- 函数和类库
- sp_is_mobile
- Comments
- sp_check_verify_code
- hook
- sp_get_plugin_class
- sp_scan_dir
- sp_get_plugin_config
- sp_plugin_url
- sp_is_sae
- sp_auth_check
- sp_get_current_admin_id
- get_current_admin_id
- get_current_userid
- leuu()
- sp_asset_relative_url
- sp_authcode
- sp_authencode
- sp_check_user_action()
- sp_clear_cache
- sp_content_page()
- sp_file_write
- sp_get_asset_upload_path
- sp_get_cmf_settings
- sp_get_comments
- sp_get_current_user
- sp_get_current_userid()
- sp_get_favorite_key()
- sp_get_host()
- sp_get_menu()
- sp_get_relative_url()
- sp_get_theme_path()
- sp_get_users()
- sp_getad()
- sp_getcontent_imgs()
- sp_getlinks()
- sp_getslide()
- sp_is_user_login()
- sp_param_lable()
- sp_password()
- sp_random_string()
- sp_send_email()
- sp_set_dynamic_config
- sp_update_current_user()
- sp_verifycode_img()
- UU()
- 系统扩展
- ThinkCMF应用开发流程
- 后台隐藏的后台菜单管理功能
- 几个重要基类
- 引入第三方库
- 门户应用
- 函数库
- sp_sql_posts()
- sp_sql_posts_paged_bycatid
- sp_sql_posts_bycatid
- sp_sql_page()
- sp_sql_posts_paged()
- sp_get_child_terms
- sp_get_terms()
- sp_get_term()
- sp_sql_post()
- sp_sql_posts_paged_bykeyword
- 门户模板制作
- 文章列表页制作
- 文章内页制作
- 页面制作
- 获取文章的各种方式
- 热门文章组件制作
- seo优化
- 模板制作
- 模板标签
- tc_include
- foreach
- 模板结构
- 最新评论组件制作
- 最新加入组件制作
- 本站用户登录模板制作
- 本站用户注册模板制作
- 忘记密码模板制作
- 密码重置
- 评论组件
- 模板资源文件引入
- 手机模板
- 点赞组件
- 如何收藏
- 标签规则
- 全局变量
- 模板注释
- 菜单导航制作
- 幻灯片制作
- 广告位制作
- 友情链接制作
- 添加留言控件
- 模板自定义函数库
- 案例
- 插件开发
- 插件
- 插件钩子
- 插件配置文件
- 插件类主文件
- 插件开发流程
- 插件控制器
- 插件数据库模型
- 插件后台管理控制器
- 后台管理
- SMTP配置