From 5566bc34b54afcaa6a65d4e2b83232e8cb9d7696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Thu, 4 Mar 2021 15:36:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Database/Base/BaseActiveRecord.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Database/Base/BaseActiveRecord.php b/Database/Base/BaseActiveRecord.php index 4603c35f..ccdadc5d 100644 --- a/Database/Base/BaseActiveRecord.php +++ b/Database/Base/BaseActiveRecord.php @@ -862,6 +862,7 @@ abstract class BaseActiveRecord extends Component implements IOrm, ArrayAccess if (array_key_exists($name, $this->_attributes)) { return static::getColumns()->_decode($name, $value); } + var_dump($name, $this->_with); if (in_array($name, $this->_with)) { return $this->resolveClass($this->{$this->_relate[$name]}()); }