1 class UserModel extends RelationModel{ 2 protected $_link = array( 3 'Profile'=> HAS_ONE, //就这一行就行了 4 ); 5 }
注:比如这是一个人员只有一份人事档案的例子
Profile:简介、档案
1 class UserModel extends RelationModel{ 2 protected $_link = array( 3 'Profile'=> HAS_ONE, //就这一行就行了 4 ); 5 }
注:比如这是一个人员只有一份人事档案的例子
Profile:简介、档案