如何在CakePHP的组件中使用模型?
在 Controller 中,您可以使用
public $uses = array(...);
但这在组件中不起作用。
什么事啊
最佳答案
试试下面的代码:
$model = ClassRegistry::init('Yourmodel');
将模型轻松查询到组件中
$result= $model->find('all');
关于php - 在组件中使用模型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13861623/