在yii中保存控制器内不相关的模型

时间:2014-04-11 16:26:38

标签: php yii yii-components

在我的帖子控制器中,我保存了评论,它完美无缺。 现在我想在摘要表中保存记录。当我保存记录时,我系统地将错误转到else选项。我需要做更多的事情吗?谢谢你的帮助。

if (isset($_POST['Comment'])) {
            $model->attributes = $_POST['Comment'];

            if ($model->save()) {


                $modelSummary = new SummaryComment;     -- Summary Table
                $modelSummary->summary_for = 1;         --  test value
                $modelSummary->post_id = 18;            -- test value  (existing post_id)

                if ($modelSummary->save()) {            -- Save Summary Table

                  $arr = array(array('c_id' => $model->id));
                  echo json_encode($arr);
                  return;
                } else {

                 echo "error";
                }

            }

0 个答案:

没有答案