改名
This commit is contained in:
@@ -491,6 +491,11 @@ abstract class BaseActiveRecord extends Component implements IOrm, \ArrayAccess
|
|||||||
public function getAttribute(string $name)
|
public function getAttribute(string $name)
|
||||||
{
|
{
|
||||||
$method = 'get' . ucfirst($name) . 'Attribute';
|
$method = 'get' . ucfirst($name) . 'Attribute';
|
||||||
|
|
||||||
|
$attributes = Snowflake::app()->getAttributes();
|
||||||
|
$callback = $attributes->getByClass(static::class, $name);
|
||||||
|
var_dump($callback);
|
||||||
|
|
||||||
if (method_exists($this, $method)) {
|
if (method_exists($this, $method)) {
|
||||||
return $this->$method($this->_attributes[$name]);
|
return $this->$method($this->_attributes[$name]);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user