model->save() Not Working In Yii2

后端 未结 10 1569
情歌与酒
情歌与酒 2020-12-06 01:10

Previously, I was not using $model->save() function for inserting or updating any data. I was simply using createCommand() to execute query and

10条回答
  •  我在风中等你
    2020-12-06 01:53

    And there maybe another reason of not saving model - you have property of your Users class and before saving from form its reset to NULL.

    So, if you set $model->saveAttributes('favorite_book'=>$model->favorite_book), but at that time you declared in class Users public $favorite_book - you will get this field empty in DB.

提交回复
热议问题