我想在 CActiveRecord 中添加其他方法,但如果class Project_Model extends CActiveRecord {}
出现错误
在数据库中找不到活动记录类“Project_ActiveRecord”的表“Project_ActiveRecord”。
我想创建简单的结构:CActiveRecord->Project_ActiveRecord(仅扩展方法)->Table(真实表)。
怎么能做到这一点?
错误很明显:您的数据库中没有命名表Project_ActiveRecord
!
如果Project_Model
要成为您其他活动记录模型的基本模型,那么您应该执行以下操作:
//A base classe example that has a behavior shared by all the inherited class
abstract class Project_Model extends CActiveRecord
{
public function behaviors(){
return array(
'CTimestampBehavior' => array(
'class' => 'zii.behaviors.CTimestampBehavior',
'setUpdateOnCreate' => true
),
);
}
}
然后你可以声明另一个在 db 中有一个表的类:
class YourClass extends Project_Model
{
/**
* Returns the static model of the specified AR class.
* @param string $className active record class name.
* @return Token the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
/**
* @return string the associated database table name
*/
public function tableName()
{
return 'YourClassTable';
}
...
}
然后你不应该在你的代码中调用这个类Project_Model
(这就是我把关键字abstract
放在你的代码中的原因),你必须调用在数据库中具有现有表的继承类!