• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Yii实现单用户博客系统文章详情页插入评论表单的方法_php实例

php 搞代码 4年前 (2022-01-25) 22次浏览 已收录 0个评论

本文实例讲述了Yii实现单用户博客系统文章详情页插入评论表单的方法。分享给大家供大家参考,具体如下:

action部分:

var=10;}class one{ public $var=1;}$obj=new one();echo $obj->var.'<p>';test($obj);echo $obj->var;exit;

PostController.php页面:

.../*** Displays a particular model.* @param integer $id the ID of the model to be displayed*/public function actionView($id){  $post=$this->loadModel($id);  $comment=$this->newComment($post);  $this->render('view',array(    'model'=>$post,    'comment'=>$comment,  ));}protected function newComment($post){  $comment=new Comment();  if(isset($_POST['Comment']))  {   $comment->attributes=$_POST['Comment'];   if($post->addComment($comment))//==============================   {    if($comment->status==Comment::STATUS_PENDING)     Yii::app()->user->setFlash('commentSubmitted','Thank you...');    $this->refresh();   }  }  return $comment;}...<strong>*本文来@源gao@daima#com搞(%代@#码@网2</strong><pre>搞代gaodaima码

models/Post.php页面:

...public function addComment($comment){  if(Yii::app()->params['commentNeedApproval'])   $comment->status=Comment::STATUS_PENDING;  else   $comment->status=Comment::STATUS_APPROVED;  $comment->post_id=$this->id;  return $comment->save();}...

post/view.php页面:

...<div id="comments"><h3>Leave a Comment</h3>user->hasFlash('commentSubmitted')): ?> <div class="flash-success"> user->getFlash('commentSubmitted'); ?> </div> renderPartial('/comment/_form',array( 'model'=>$comment, )); ?></div><!---ecms  comments -->...

希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Yii实现单用户博客系统文章详情页插入评论表单的方法_php实例
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址