自从 3 天以来,我一直在尝试解决这个问题,但我需要帮助。主要是我做了尝试和错误。如果有人可以给我一个解决方案,我可以对其进行逆向工程并更好地理解 cakephp。
我想要的是这样的索引视图(制作图形): http ://www.bilder-upload.eu/show.php?file=fd8e93-1340110385.png
门和钥匙有一个 habtm 关系,我想列出属于 1 把钥匙的所有门
我有 3 张桌子:
门(id,标题,txt) 键(id,编号,描述) door_keys(door_id,key_id)
这是我的key.php
<?php
class Key extends AppModel {
public $hasAndBelongsToMany = array ('Door');
public $displayField = 'description';
// containable
var $actsAs = array('Containable');
}
门.php
<?php
class Door extends AppModel {
public $name = 'Door';
public $belongsTo = array('Building');
//public $actsAs = array('Containable');
public $hasAndBelongsToMany = array('Key');
// validation array wird aufgemacht
public $validate = array(
// validation wird für das Datenbankfeld title definiert
'title' => array(
// Feld darf nicht leer sein
'rule' => 'notEmpty' ,
// Eintrag muss ausgewählt werden
'required' => true
),
// validation für das DB Feld building_id
'building_id' => array(
'rule' => 'notEmpty' ,
'required' => true
),
);
// viele türen sind in einem Gebäude-> n:1->$belongsTo
// in der tabelle doors muss ein fremdschluessel auf die andere datenbank angelegt sein
}
键控制器.php(不工作)
class KeysController extends AppController {
public function index() {
$this->paginate = array(
'contain' => array(
// we want to get the key
'Door' => array(
// the info i wanna know is in the field txt
'fields' => array('txt')
),
),
);
$keys = $this->paginate('Key');
debug($this->set(compact('keys')));
}
来自键的 index.ctp
<h2>Schluessel selbstgemacht</h2>
<table>
<!-- tr definiert eine Tabellenzeile -->
<tr>
<!-- th Überschriften in der Zeile -->
<th>ID</th>
<th>Description</th>
<th>number</th>
</tr>
<?php foreach($keys as $key): ?>
<tr>
<td><?php echo $key['Key']['id'] ?></td>
<td><?php echo $key['Key']['description'] ?></td>
<td><?php echo $key['Key']['number'] ?></td>
<td><?php echo $key['Door']['txt'] ?></td>
<td>
<?php echo $this->Html->link('Details', '/keys/view/' . $key['Key']['id']) ?>
<?php echo $this->Html->link('bearbeiten', '/keys/edit/' . $key['Key']['id']) ?>
<?php echo $this->Html->link('loeschen', '/keys/delete/' . $key['Key']['id']) ?>
</td>
</tr>
<?php endforeach; ?>
</table>
我想这是一个基本问题,但我找不到解决方案。所以我需要一些帮助。谢谢