基本上,我试图学习cakephp的基础知识,并且我坚持将关系排序。我尝试了许多方法但没有成功。
我有一个需要连接到联系表的潜在客户表,一个联系人可以有很多潜在客户。我不知道怎么做,有人可以帮忙吗?
主导模式:
<?php
class Lead extends AppModel {
var $name = 'Lead';
var $belongsTo = array(
'Contact' => array(
'className' => 'Contact',
'foreignKey' => 'contact_id'
)
);
}
?>
接触
<?php
class Contact extends AppModel {
var $name = 'Contact';
var $hasMany = array(
'Lead' => array(
'className' => 'Lead',
'foreignKey' => 'contact_id'
)
);
}
?>