这甚至可能吗?
也许?
<link rel=“next” type=“application/atom+xml” href=”[//path/page2]”></link>
似乎 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 上找不到任何东西,但由于它被称为“真正简单的联合”,我想这样的功能超出了它的范围。
这在 RFC 5005,Feed Paging and Archiving,第 3 节中定义。
您可以使用 first、previous、next 和 last 作为链接关系:
<link rel="next" href="http://example.org/index.atom?page=2"/>
不需要额外的“类型”属性。