dryb38654 2016-04-29 01:12
浏览 28
已采纳

Yii 2 - 无法使用模型更新

I have some code:

public function actionEditpost($id) {
    $post = SiteBlogPosts::find()->
            where(["id" => $id])->
            asArray()->
            one();

    $model = new SiteBlogPosts();
    $model->id = $post['id'];
    $model->DateCreated = $post['DateCreated'];
    $model->Author = $post['Author'];
    $model->Title = $post['Title'];
    $model->PreviewText = $post['PreviewText'];
    $model->FullTextOfPost = $post['FullTextOfPost'];
    $model->CategoryID = $post['CategoryID'];

    if ($model->load(Yii::$app->request->post())) {

        if ($model->validate()) {

            $model->update();
            print_r($model);
            die;
            return $this->render('AddPostDone', ['model' => $model]);
        }
    } else {
        $cats = SiteBlogCats::find()->where(["CatIsActive" => 1])->asArray()->all();
        return $this->render('EditPost', ['cats' => $cats,
                    "model" => $model,
                    'oldPost' => $post,
        ]);
    }
}

This code works incorrectly - it doesn't update record in MySQL. In /runtime/debug logs I found interesting moment:

"UPDATE `SiteBlogPosts` SET `id`=5, `DateCreated`='2015-06-11', `Author`=1,
  `Title`='We are improved build mode!',
  `PreviewText`='<div class=\"post-content\">
<p>Hi.</p>

<p></p>

<p>We are improved build mode! Also, we added simple Mirror Material Test.</p>

<p><iframe height=\"350\" src=\"http://www.youtube.com/embed/FLQ4i_av7HM\" width=\"425\"></iframe></p>
</div>
',
  `FullTextOfPost`='<div class=\"post-content\">
<p>Hi.</p>

<p></p>

<p>We are improved build mode! Also, we added simple Mirror Material Test.</p>

<p><iframe height=\"350\" src=\"http://www.youtube.com/embed/FLQ4i_av7HM\" width=\"425\"></iframe></p>
</div>
',
  `CategoryID`=1 
WHERE `id` IS NULL"

Otherwise, print_r shows:

app\models\SiteBlogPosts Object
(
    [sqlCreateQuery] => 
    [_attributes:yii\db\BaseActiveRecord:private] => Array
        (
            [id] => 5
            [DateCreated] => 2015-06-11
            [Author] => 1
            [Title] => We are improved build mode!
            [PreviewText] => <div class="post-content">
<p>Hi.</p>

<p></p>

<p>We are improved build mode! Also, we added simple Mirror Material Test.</p>

<p><iframe height="350" src="http://www.youtube.com/embed/FLQ4i_av7HM" width="425"></iframe></p>
</div>

Why it used WHERE id IS NULL instead of WHERE id = 5?

Thank you!

展开全部

  • 写回答

2条回答 默认 最新

  • douhan9467 2016-04-29 01:24
    关注

    Solution:

       public function actionEditpost($id) {
            $model = SiteBlogPosts::find()->
                    where(["id" => $id])->
                    one();
    
            $cats = SiteBlogCats::find()->where(["CatIsActive" => 1])->asArray()->all();
    
    
            if ($model->load(Yii::$app->request->post())) {
    
                if ($model->validate()) {
                    $model->update();
    //                print_r($model);
    //                die;
                    return $this->render('EditPost', ['cats' => $cats,
                                "model" => $model,
                    ]);
                }
            } else {
                return $this->render('EditPost', ['cats' => $cats,
                            "model" => $model,
                ]);
            }
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部