2

所以我正在使用 Pods 抓取一些记录。
我有 31 条记录,但我的while($thePod->fetchRecord())循环只进行了 15 次

$thePod = new Pod('projects');
$thePod->findRecords('slider_order ASC');
$totalItems = $thePod->getTotalRows(); // = 31

while($thePod->fetchRecord()) :
  $i++;

endwhile;

echo $i.'/'.$totalItems.' looped through'; // displays 15/31

任何想法为什么会发生这种情况?

4

1 回答 1

3

将第 2 行更改为:

$thePod->findRecords('slider_order ASC',-1);

15 是每页的默认记录,-1 返回所有记录。

于 2012-12-11T09:04:56.670 回答