Reddit分页前= NULL

时间:2015-08-14 08:34:37

标签: php pagination reddit

我试图从reddit API返回一组结果,但是before参数总是返回NULL,所以我可以加载下一页。

这是我的分页链接:

这始终包含after参数

的值
<a href="index.php?count=<?php echo $count ?>&after=<?php echo $response->data->after; ?>&limit=<?php echo $limit ?>" class="pagination-load-more">Previous</a>

before始终为空

<a href="index.php?count=<?php echo $count ?>&before=<?php echo $response->data->before; ?>&limit=<?php echo $limit ?>" class="pagination-load-more">Load More</a>

从研究中我看到我需要解析count变量来告诉API已经显示了多少帖子以及从哪里开始下一页。

有人可以帮我这个吗?

0 个答案:

没有答案