This commit is contained in:
2020-09-14 14:21:34 +08:00
parent 2effed0d04
commit c801867247
+3 -2
View File
@@ -367,7 +367,6 @@ abstract class BaseActiveRecord extends Component implements IOrm, \ArrayAccess
} }
} }
$trance->commit(); $trance->commit();
var_dump($param, $attributes);
$this->setAttributes($param); $this->setAttributes($param);
$this->afterSave($attributes, $param); $this->afterSave($attributes, $param);
$this->refresh(); $this->refresh();
@@ -414,7 +413,9 @@ abstract class BaseActiveRecord extends Component implements IOrm, \ArrayAccess
*/ */
public function save($data = NULL) public function save($data = NULL)
{ {
$this->setAttributes($data); if (is_array($data)) {
$this->setAttributes($data);
}
if (!$this->validator($this->rules()) || !$this->beforeSave()) { if (!$this->validator($this->rules()) || !$this->beforeSave()) {
return false; return false;
} }