RSS item <guid> 元素
<guid> 元素为 item 定义一个唯一的标识符
聚合器必须把 guid 视为字符串 这里没有固定的语法规则,这取决于文档的创建者,来确定字符串的唯一性
GUID 是 Globally Unique Identifier 几个因为单词的缩写
属性
如果元素/属性没有 required 则表示可选,就是可以不定义
属性 | 描述 |
---|---|
isPermaLink | 如果值为 true,则当前 guid 的内容是是当前 item 永久连接 如果值为 false,guid 可能不会被假定为一个 URL 默认值是 true |
范例
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>简单编程首页</title> <link>https://www.twle.cn</link> <description>简单教程[www.twle.cn]以编程开发所需掌握的语言和知识入手...</description> <item> <title>Python2 基础教程</title> <link>https://www.twle.cn/l/yufei/python27/python27-basic-index.html</link> <description>Python2 基础教程</description> <guid>https://www.twle.cn/feed/item/0768</guid> </item> </channel> </rss>