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

5年以前  |  阅读数:368 次  |  编程语言:PHP 

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

action部分:


    <?php
    function test($objs)
    {
     $objs->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;
    }
    ...

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>
    <?php if(Yii::app()->user->hasFlash('commentSubmitted')): ?>
     <div class="flash-success">
     <?php echo Yii::app()->user->getFlash('commentSubmitted'); ?>
     </div>
    <?php else: ?>
     <?php $this->renderPartial('/comment/_form',array(
     'model'=>$comment,
     )); ?>
    <?php endif; ?>
    </div><!-- comments -->
    ...

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

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例