在我的练习应用程序中,我有一个名为'music'的表,其中有3列 - id,title和artist。每当我尝试将表单中的输入值插入数据库时,都会添加一条新记录,但只有id具有值,title和artist都为null。以下是我的模特:
<?php namespace app\models;
/**
* This is the model class for table "music".
*
* @property integer $id
* @property string $title
* @property string $artist
*/
class MusicEntry extends \yii\db\ActiveRecord {
public $title;
public $artist;
public $id;
public static function tableName() {
return 'music';
}
public function rules() {
return [
[['title', 'artist'], 'required'],
[['id'], 'safe'],
];
}
} ?>
虽然我的控制器动作如此:
public function actionMusicEntry() {
$model = new MusicEntry ();
if (isset ( $_POST ['MusicEntry'] )) {
$model->load($_POST);
if ($model->save()) {
Yii::$app->session->setFlash ( 'success', 'Model has been saved' );
$this->redirect ( [
'music-entry',
'id' => $model->id
] );
}
}
return $this->render ( 'music-entry', [
'model' => $model
] );
}
我在使用$ _POST加载模型后尝试获取艺术家和标题的值,它具有我在表单中输入的值。鉴于此,为什么输入值在数据库中保存为null?
答案 0 :(得分:1)
经过进一步调整后,我在模型中找到了问题的原因。我不得不删除$ artist和$ title的声明。我仍然不确定为什么添加这些变量会导致这样的问题。还在调查。