在yii中存储来自post视图的评论数据


Storing the comment data from post view in yii

我可以通过下面的代码获得文章中的评论形式。

<?php $comment= new Comment();
        $this->renderPartial('/comment/_form',array('model'=>$comment,)); 
?>

,但现在要求在post view的评论表单中填写的数据存储在数据库中。另一个问题,当在创建新评论的评论表单中填写数据时,它会在数据库中创建2个类似的记录。

您的问题不是很清楚地解释,但根据我的理解,您应该尝试查看CFormModel及其验证器。

如果你想讨论细节请告诉我。