我有Model nane是Usertest,它有一些字段,例如
id , name , age , birthdate ...ect
我在模型中具有afterSave的调用功能。我可以使用$this->id;
AfterSave可以在功能中获取其他字段,例如年龄或生日吗?
<?php
App::uses('AppModel', 'Model');
class UserTest extends AppModel
{
public $useDbConfig = 'default';
public function afterSave($created, $options = array())
{
parent::afterSave($created, $options);
$NewID = $this->id;
$NewAge = ????
}
}