Yii2 ActiveRecord有一种方法可以使用
load()
自动将表单数据加载到模型中,这非常好,因为它可以安全地加载带有数据的模型,但是我无法找到卸载所有属性模型的等效方法.
即是否有一种方法可以取消设置Yii2中模型的所有属性,如Yii 1.x中的unSetAttributes()
方法?
目前,唯一的方法似乎是
$model->setAttributes(['attribute1'=>NULL,'attribute2' => NULL ... ]);
要么
foreach ($model->attributes as $attribute) { $model->$attribute = NULL; }
编辑:为了澄清响应Samuel Liew’s answer,虽然在这一点上我只想通过重新启动模型来取消设置我可以做的所有属性,我还想控制哪些属性被重置,unSetAttributes提供了哪些属性
您只需创建模型的新实例即可.
原文链接:https://www.f2er.com/php/136933.html$model = new MyModel;
或者你可以看到,unsetAttributes in Yii 1是这样的,你可以在你的基础模型中简单地实现它:
public function unsetAttributes($names=null) { if($names===null) $names=$this->attributeNames(); foreach($names as $name) $this->$name=null; }