所以我正在使用 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
任何想法为什么会发生这种情况?