Raw Function 限制为 100

我想通过原始函数获取我帖子下的所有评论

我使用了原始链接
https://theantsforum.allstarunion.com/raw/2018

原始链接的最后一条评论是“Irbef | 2022-07-16 11:45:50 UTC | #101”,但那不是正确的,最后一条应该是7月21日,而不是7月16日,请帮帮我。

你好,
原始路由似乎是分页的:
https://theantsforum.allstarunion.com/raw/2018?page=2
https://theantsforum.allstarunion.com/raw/2018?page=3
https://theantsforum.allstarunion.com/raw/2018?page=4

3 个赞

您也可以使用 数据浏览器 来处理大量页面。我认为类似这样的方法会起作用:

-- [params]
-- int :topic_id

SELECT p.topic_id,
       p.post_number,
       p.raw,
       p.cooked
FROM posts p
WHERE p.topic_id = :topic_id
ORDER BY p.post_number ASC

(不过这只对管理员或管理员允许访问该查询的组有用,因此在这种情况下可能不适用)

3 个赞

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.