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
+2 -35
View File
@@ -296,48 +296,15 @@ class ActiveRecord extends BaseActiveRecord
private function runRelate(): array
{
$relates = [];
echo '--------------->' . PHP_EOL;
var_dump($this->_with, get_called_class());
echo '<---------------' . PHP_EOL;
if (empty($this->_with)) {
if (empty($with = $this->getWith())) {
return $relates;
}
foreach ($this->_with as $val) {
foreach ($with as $val) {
$relates[$val] = $this->resolveObject($val);
}
$this->_with = [];
return $relates;
}
private array $_with = [];
/**
* @param $data
* @return ActiveRecord
*/
public function setWith($data): static
{
echo '--------------->' . PHP_EOL;
var_dump($data, get_called_class());
echo '<---------------' . PHP_EOL;
if (empty($data)) {
return $this;
}
$this->_with = $data;
return $this;
}
/**
* @return array|null
*/
public function getWith(): array|null
{
return $this->_with;
}
/**
* @param string $modelName