创建我自己的 RSS feed 2.0
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" version="2.0">
我注意到 rss 标签允许使用 xml 名称空间,这是否意味着我可以使用 rss 规范中定义的标签以外的标签创建 rss 提要?
例如,假设我是一家在线商店,想要使用 rss 来宣传新产品。我可以为产品的价格定义一个标签。
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" version="2.0">
I noticed that the rss tag allows for xml name spaces so does this mean I can create an rss feed with tags other than the tags defined within the rss spec?
For example say I was a online store who wanted to use rss to advertise new products. I could define a tag for the price of the product.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,但请记住,向 XML 添加其他名称空间并不意味着下游软件将自动能够使用这些标签。如果您将产品的价格添加到 XML 中,RSS 消费者不一定能够对其进行有意义的解析。不过,它也不应该炸毁它们。
Yes, but bear in mind that adding other namespaces to your XML does not mean that downstream software will automatically be able to make use of the tags. If you add the price of your product to your XML, it won't necessarily be parsed meaningfully by RSS consumers. It shouldn't blow them up either, though.