如何获取话题的原始内容
获取话题的原始内容可以通过修改URL中的路径来实现。以置顶帖为例,其URL通常形如:
https:///t/topic/1472371将路径中的 /t/slug 替换为 /raw,即可获取原始内容,例如:
https:///raw/1472371如果需要浏览多个帖子,可以使用 ?page=2 这样的参数进行翻页,比如:
https:///raw/1472371?page=2对于特定的单个帖子,只需在其ID后加上 /id 即可查看该帖子的原始内容,例如:
https:///raw/1472371/1这里是一个示例,展示了如何通过链接查看帖子的原始内容:
8 posts - 4
<a href="https:///t/topic/1476556" target="_blank" rel="noopener" onclick="return confirm('Open this link?
'+this.href);"></a>
via <a href="https:///t/topic/1476556" target="_blank" rel="noopener" onclick="return confirm('Open this link?
'+this.href);"> - </a> (author: 知道)通过这种方式,用户可以方便地获取并阅读感兴趣话题的原始内容。
评论已关闭