我试图从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已经显示了多少帖子以及从哪里开始下一页。
有人可以帮我这个吗?