新的cakePHP并尝试我的第一次加入。我有一个名为users的表和一个名为projects的表。一个用户可以有很多项目,因此项目有一个user_id列。
这是我在projects_controller中的操作:
function index() {
$this->set('projects', $this->Project->find('all', array('joins' => array(
array(
'table' => 'users',
'alias' => 'UsersTable',
'type' => 'inner',
'foreginKey' => false,
'conditions' => array('UsersTable.id = Project.user_id')
)
))));
}
这是SQL转储:
SELECT `Project`.`id`, `Project`.`title`, `Project`.`created`, `Project`.`website`, `Project`.`language_id`, `Project`.`user_id` FROM `projects` AS `Project` inner JOIN users AS `UsersTable` ON (`UsersTable`.`id` = `Project`.`user_id`) WHERE 1 = 1
正如您将看到一切似乎都很好,除了它没有从用户表中选择任何东西,但它正在加入它。
以下是我的观点:
<table>
<tr>
<th>Name</th>
<th>User</th>
</tr>
<?php foreach ($projects as $project): ?>
<tr>
<td>
<?php echo $html->link($project['Project']['title'], array('controller' => 'projects', 'action' => 'view', $project['Project']['id'])); ?>
</td>
<td>
<?php echo $html->link($project['Project']['username'], array('controller' => 'users', 'action' => 'view', $project['Project']['user_id'])); ?>
</td>
</tr>
<?php endforeach; ?>
我搞砸了吗?视图尝试列出所有项目以及拥有它的用户。
非常感谢,
Jonesy
答案 0 :(得分:1)
通过编辑项目模型找到我想要实现的目标:
var $belongsTo = array(
'User' => array(
'className' => 'User',
'foreignKey' => 'user_id'
)
);
这就是诀窍!