我在CarsTable.php中有一个名为“findActive”的查找器方法,我从另一个控制器调用它:VehiclesController.php:
CarsTable.php
public function findActive(Query $query, array $options): Query
{ ..... }
字符串
// ControllerVehiclesController.php
$carsTable = TableRegistry::getTableLocator()->get('cars');
$activeCars = $carsTable->find('active');
型
在我把它移到蛋糕4之前,它工作得很好,有什么线索吗?
1条答案
按热度按时间66bbxpm51#
尝试以下