Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个动态表名并尝试在 Cake PHP 控制器中使用数据表。但它没有奏效。
<?php $data = $this -> DataTable -> getResponse(Model,action); ?>
在这里,我没有任何指定的模型名称,因为我通过ClassRegistry::init()in 访问表模型。我这里没有确切的型号名称。那么我应该在这里使用什么?另外我应该指定什么操作来获取数据?
ClassRegistry::init()
您可以使用
$this->controller->loadModel($Model); $this->controller->{$Model}->{user any model action}
{user any model action} :您必须为所有模型执行具有通用名称的操作。