这甚至可能吗?
也许?
<link rel=“next” type=“application/atom+xml” href=”[//path/page2]”></link>
答案 0 :(得分:21)
似乎ATOM allows the following syntax(“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上找不到任何内容,但因为它被称为“非常简单联合”,我认为这些功能超出了它的范围。
答案 1 :(得分:15)
这在RFC 5005,Feed Paging and Archiving中定义,section 3。
您可以使用first,previous,next和last作为链接关系:
<link rel="next" href="http://example.org/index.atom?page=2"/>
不需要额外的“type”属性。