我只是在学习 CakePHP,对于任何明显的错误,我深表歉意。我创建了模型类并更改了默认表名。
class Weathers extends AppModel {
public $tablePrefix = 'weather_';
public $useTable = 'forecasts';
function saveCountries($countries){
...
}
}
还有我的控制器功能
if (!$this->loadModel('Weather'))
exit;
$Weather = $this->Weather;
$Weather->saveCountries($countries);
我在$Weather->saveCountries($countries)上遇到错误;
错误:在数据源默认值中未找到模型 Weather 的表天气。
请帮助找出我做错了什么。