我现在正在尝试Cake
PHP,我无法让我的应用程序正常工作,因为CakePHP“认为”我的模型名称是“Tach”,而实际上是“Tache”.
原文链接:https://www.f2er.com/php/134145.html为什么这样 ?
我的控制器定义为:
应用程序/控制器/ taches_controller.PHP
class TachesController extends AppController { function index() { $allTaches = $this->Tache->find('all'); $this->set('taches',$allTaches); }
}
这是我的模特:
应用程序/模型/ tache.PHP
class Tache extends AppModel { var $useTable = 'taches';
}
如果我在控制器中使用“Tache”,则会出错:
$allTaches = $this->Tache->find('all');
但如果我使用’Tach’,我就不会收到任何错误:
$allTaches = $this->Tach->find('all');
为什么我不能使用型号名称’Tache’?难道我做错了什么 ?顺便说一句,我在PHP 5.3上,我的CakePHP版本是1.3.8
谢谢 !
亚历克斯