如何使用函数find('list')从其模型旁边的其他表中获取数据?

时间:2012-11-30 03:42:52

标签: cakephp

我是Cakephp的新手我使用函数find('list')从User模型中的其他表中获取数据。示例我有用户模型想要获取组和组的列表有表“组”但我不想为组控制器和组模型创建php文件。

    <?php
      //User model
       class User extends AppModel {

         public function getGroupList() {
            /* Here i want return list all group by use function find('list') 
             * but group has table name "groups" and i don't want use sql query string.
             * Note that group i don't create  files php in controller and model.
             */

         }

       } 
    ?>

1 个答案:

答案 0 :(得分:1)

为什么不想创建群组控制器?以蛋糕方式做事通常会让你的生活更轻松。

在任何一种情况下都会涉及额外的SQL查询(或至少加入)。