我是 cakephp 新手,并尝试使用控制台工具生成一些 CRUD 操作。除了一张桌子(最大的)外,它工作正常。
尝试添加新元素时,它返回:
错误:在非对象文件上调用成员函数 find():C:\wamp\www\cakephp\app\Controller\ChantiersController.php
行:50
这是第 50 行及以后:
$programs = $this->Chantier->Program->find('list');
$etats = $this->Chantier->Etat->find('list');
$types = $this->Chantier->Type->find('list');
$champsLibres = $this->Chantier->ChampsLibre->find('list');
$feuillesDeRoutes = $this->Chantier->FeuillesDeRoute->find('list');
$directionsPilotes = $this->Chantier->DirectionsPilote->find('list');
$this->set(compact('programs', 'etats', 'types', 'champsLibres',
'feuillesDeRoutes', 'directionsPilotes'));