gpt4 book ai didi

php - Yii 2.0 - 输入值在数据库中保存为 null

转载 作者:行者123 更新时间:2023-11-29 00:00:09 27 4
gpt4 key购买 nike

在我的练习应用程序中,我有一个名为“音乐”的表格,其中包含 3 列 - id、title 和 artist。每当我尝试将表单中的输入值插入数据库时​​,都会添加一条新记录,但只有 id 有一个值,title 和 artist 都是空的。下面是我的模型:

<?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'],
];
}
} ?>

虽然我的 Controller 操作看起来像这样:

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 加载模型后,我尝试获取艺术家和标题的值,它具有我在表单中输入的值。鉴于此,为什么输入值在数据库中保存为空?

最佳答案

进一步调整后,我在模型中找到了问题的原因。我不得不删除 $artist 和 $title 的声明。我仍然不确定为什么添加这些变量会导致这样的问题。仍在研究中。

关于php - Yii 2.0 - 输入值在数据库中保存为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30180636/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com