Cakephp分页显示一些记录的倍数

时间:2011-01-20 05:56:32

标签: php cakephp paginate

这是我第一次使用CakePHP进行编程。我正在使用cakePHP 1.3.3。我遇到过这个问题,我似乎无法弄清问题是什么。我的功能如下:

function view_members(){
  $data = $this->paginate('User',array('User.level <=' => '10'));
  print_r($data);
}

在我的控制器的开头,paginate设置为:

var $paginate = array(
'limit' => 20,
'order' => array('User.id' => 'asc'),
'User' => array(
  'fields' => array('User.id','User.level','User.name','User.status'),
  'recursive' => 0
 )
);

在我的模型中,User以这种方式设置:

    class User extends AppModel {
    var $name = 'User';
    var $hasOne = array(
        'Users_detail' => array(
            'className' => 'Users_detail',
            'dependent' => true,
        ),
        'Users_calendar' => array(
            'className' => 'Users_calendar',
            'dependent' => true,
        ),
    );
    var $hasMany = array(
        'Users_transaction' => array(
            'className' => 'Users_transaction',
            'order' => 'Users_transaction.id ASC', 
            'dependent' => true,
        ),
        'Users_notice' => array(
            'className' => 'Users_notice',
            'order' => 'Users_notice.id DESC',
            'dependent' => true,
        ),
    );
}

我的问题是当我访问该功能时,我收到了1个记录的多个实例。

这是我得到的数组:

Array
(
    [0] => Array
        (
            [User] => Array
                (
                    [id] => 3
                    [level] => 5
                    [name] => Matthew
                    [status] => 1
                )

        )

    [1] => Array
        (
            [User] => Array
                (
                    [id] => 3
                    [level] => 5
                    [name] => Matthew
                    [status] => 1
                )

        )

    [2] => Array
        (
            [User] => Array
                (
                    [id] => 3
                    [level] => 5
                    [name] => Matthew
                    [status] => 1
                )

        )

    [3] => Array
        (
            [User] => Array
                (
                    [id] => 3
                    [level] => 5
                    [name] => Matthew
                    [status] => 1
                )

        )

    [4] => Array
        (
            [User] => Array
                (
                    [id] => 4
                    [level] => 5
                    [name] => Larry
                    [status] => 1
                )

        )

    [5] => Array
        (
            [User] => Array
                (
                    [id] => 5
                    [level] => 5
                    [name] => Brian
                    [status] => 1
                )

        )
);

在这个例子中,即使MySQL数据库中只有1条记录,Matthew在Array中出现了4次。我一直试图找出它为什么这样做,但到目前为止,我还没有成功。有没有人经历过这个?

1 个答案:

答案 0 :(得分:0)

如果没有看到确切的SQL Cake正在执行它有点难以找到确切的答案,但我最好的猜测是它将与相关表中存在的数据有关。用户Matthew是否在与User表相关的其中一个表中关联了行?

您正在使用recursive = 0,但这可能无法达到您的预期(它实际上会与其与belongsTo关系的其他模型建立联接)。如果您不希望与其他表进行任何连接,请使用recursive = -1。请参阅蛋糕手册中的documentation for recursive以了解其工作原理。