34

这甚至可能吗?

也许?

<link rel=“next” type=“application/atom+xml” href=”[//path/page2]”&gt;</link> 
4

2 回答 2

26

似乎 ATOM允许以下语法(“ ATOM feed next/previous”的第一个 Google 结果):

<link rel="self" type="application/atom+xml" href="http://www.syfyportal.com/atomFeed.php?page=3"/>
<link rel="first" href="http://www.syfyportal.com/atomFeed.php"/>
<link rel="next" href="http://www.syfyportal.com/atomFeed.php?page=4"/>
<link rel="previous" href="http://www.syfyportal.com/atomFeed.php?page=2"/>
<link rel="last" href="http://www.syfyportal.com/atomFeed.php?page=147"/>

我在 RSS 上找不到任何东西,但由于它被称为“真正简单的联合”,我想这样的功能超出了它的范围。

于 2009-08-19T17:35:15.913 回答
19

这在 RFC 5005,Feed Paging and Archiving,第 3 节中定义。

您可以使用 first、previous、next 和 last 作为链接关系:

<link rel="next" href="http://example.org/index.atom?page=2"/>

不需要额外的“类型”属性。

于 2009-10-04T13:02:09.280 回答