模型插件存储在/app/Plugin/ContactManager/Model。我们已经为这个插件定义了一个ContactsController,所以让我们创建控制器的模型,称为接触:
// /app/Plugin/ContactManager/Model/Contact.php:
class Contact extends ContactManagerAppModel {
}
现在访问 /contact_manager/contacts(给你已经有一个表在数据库中被称为“联系人”)应该给我们一个“Missing View”。让我们创建下一个。
案例:
// /app/Plugin/ContactManager/Model/Contact.php:
class Contact extends ContactManagerAppModel {
public $hasMany = array('ContactManager.AltName');
}
如果你希望协会没有插件的数组键前缀,使用替代语法:
// /app/Plugin/ContactManager/Model/Contact.php:
class Contact extends ContactManagerAppModel {
public $hasMany = array(
'AltName' => array(
'className' => 'ContactManager.AltName'
)
);
}