This commit is contained in:
2021-03-04 15:34:49 +08:00
parent 356c4a53e5
commit f97c55eecc
2 changed files with 29 additions and 36 deletions
+27 -1
View File
@@ -88,6 +88,32 @@ abstract class BaseActiveRecord extends Component implements IOrm, ArrayAccess
protected ?Relation $_relation;
private array $_with = [];
/**
* @param $data
* @return ActiveRecord
*/
public function setWith($data): static
{
if (empty($data)) {
return $this;
}
$this->_with = $data;
return $this;
}
/**
* @return array|null
*/
public function getWith(): array|null
{
return $this->_with;
}
/**
* @param SEvent $event
* 默认注入
@@ -839,7 +865,7 @@ abstract class BaseActiveRecord extends Component implements IOrm, ArrayAccess
if (array_key_exists($name, $this->_attributes)) {
return static::getColumns()->_decode($name, $value);
}
if (isset($this->_relate[$name])) {
if (isset($this->_with[$name])) {
return $this->resolveClass($this->{$this->_relate[$name]}());
}
return parent::__get($name);