CakePHP: Call to a member function find() on a non-object

前端 未结 2 1656
醉酒成梦
醉酒成梦 2021-01-22 16:33

I get the following errors when viewing my Admin Index

Notice (8): Undefined property: ClientsController::$Clients [APP/controllers/clients_controller.php, line          


        
2条回答
  •  清歌不尽
    2021-01-22 16:51

    Model names are singular in CakePHP (at least if you follow the naming conventions), which means you have to use: $this->Client->find('all');

提交回复
热议问题