RSS item <enclosure>元素
<enclosure> 元素允许在 item 中加入媒体文件
语法
<enclosure url="<your_media_url>" length="<medi_byte_lenth>" type="<media_type>" />
属性
如果元素/属性没有 required 则表示可选,就是可以不定义
属性 | 描述 |
---|---|
length required | 定义媒体文件的长度(以字节计) |
type required | 定义媒体文件的类型 |
url required | 定义指向该媒体文件的 URL |
范例
<?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> <enclosure url="https://www.twle.cn/static/media/liar.wav" length="78645" type="video/wav" /> </item> </channel> </rss>