私は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のテーブル天気がデータソースのデフォルトで見つかりませんでした。
私が間違っていることを見つけるのを手伝ってください。