Yii 2中的model->属性始终为NULL值

6ioyuze2  于 2022-11-09  发布在  其他
关注(0)|答案(7)|浏览(270)

我有一个临时模型作为viewModel。在我的CRUD操作(例如actionCreate)中,我想获取这个viewModel数据并将其分配给ActiveRecord模型。我使用了下面的代码,但我的模型对象属性总是显示NULL属性值:

$model = new _Users();
if ($model->load(Yii::$app->request->post())) {
    Yii::info($model->attributes,'test'); // NULL
    $attributesValue =[
            'title' => $_POST['_Users']['title'],
            'type' => $_POST['_Users']['type'],
        ];
    $model->attributes = $attributesValue;
    Yii::info($model->attributes,'test'); // NULL

    $dbModel = new Users();
    $dbModel->title = $model->title;
    $dbModel->type = $model->type . ' CYC'; // CYC is static type code
    Yii::info($dbModel->attributes,'test'); // NULL

    if ($dbModel->save()) {
            return $this->redirect(['view', 'id' => $dbModel->id]); // Page redirect to blank page
        }
}
else {
        return $this->render('create', [
            'model' => $model,
        ]);
}

我觉得**$model-〉load(Yii::$app-〉request-〉post())**不工作,对象属性为空。是Yii 2的bug还是我的代码不正确?

hivapdat

hivapdat1#

如果您的属性没有规则,则**$model->load()**将忽略不在模型规则中的属性。
将属性添加到rules函数

public function rules()
{
    return [
        ...
        [['attribute_name'], 'type'],
        ...
    ];
}
mzmfm0qo

mzmfm0qo2#

要在yii2.0中为一个单独的属性(db-fields)获取数据,那么你应该做如下操作:

echo $yourModel->getAttribute('email');
deikduxw

deikduxw3#

ActiveRecord $attributes是私有属性使用$model->getAttribute(string)

xjreopfe

xjreopfe4#

可以使用以下代码:

$model = new _Users();
$model->attributes=Yii::$app->request->post('_Users');
$model->title= $model->title
$model->type = $model->type . ' CYC'; // CYC is static type code

# $model->sampleAttribute='Hello World';
6tdlim6h

6tdlim6h5#

将属性声明为私有,然后

echo $yourModel->attribute

按预期工作

sdnqo3pr

sdnqo3pr6#

您必须删除_User模型中的所有公共属性(title、type 等),$model->attributes = $post才能正常工作。

jvlzgdj9

jvlzgdj97#

我也遇到过同样的问题,我把我的属性添加到rules函数中,但也出错了。我找到了这个问题的原因。这是因为提交表单在相应视图文件中的名称与您在控制器中使用的模型名称不相同

[controller file]:

$model=new SearchForm();

[view file]:

<input name="SearchForm[attribus]" ...

or 

[view file]:

<?= $form->field($model,'atrribus')->textInput()?>

相关问题