以下是 RSS 数据的示例:
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>菜鸟教程首页</title>
<link>http://www.runoob.com</link>
<description>免费编程教程</description>
<item>
<title>RSS 教程</title>
<link>http://www.runoob.com/rss</link>
<description>菜鸟教程 Rss 教程</description>
</item>
<item>
<title>XML 教程</title>
<link>http://www.runoob.com/xml</link>
<description>菜鸟教程 XML 教程</description>
</item>
</channel>
</rss>
我看到了很多RSS源,只有一个channel
,我不确定标准是否只是一个RSS源的一个频道。
答案1
根据此 RSS 2.0 规范:
从属于
<rss>
元素的是单个<channel>
元素,其中包含有关频道(元数据)及其内容的信息。
我找不到 RSS 1.0 或 0.9x 的正式规范来定义一个 feed 可以包含多少个频道元素。