在我看来,我想要一个类似这样的 HTML 表格:
COUNTRY TOWN
france paris
这是我的查询:
$foo=$this->country->find('all', array(
'contain' => array(
'Town' => array(
'conditions' => array("Town.country_id = country.id"),
'fields' => array('id','name')
)
)
)
);
我想像这样显示到我的视图中:
line6 <?php foreach ($diponibilite as $f): ?>
line7
line8 <tr>
line9 <td><?php echo $f['country']['name'];?></td>
line10 <td><?php echo $f['town']['name'];?></td>
line11
line12 </tr>
line13 <?php endforeach; ?>
模型“国家”和“城镇”是相关联的:
country hasmany town and town belongsto country
不幸的是,一个错误:
注意(8):未定义索引:名称[APP\View\index\index.ctp,第10行]
为什么?