dryb38654 2016-04-29 09: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 09: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条)

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据