在 atom 提要中公开数据
Posted
技术标签:
【中文标题】在 atom 提要中公开数据【英文标题】:Exposing data in an atom feed 【发布时间】:2010-09-20 13:43:19 【问题描述】:如何将额外数据添加到未映射到标准条目节点(标题、链接、id、更新、摘要)的 atom 提要中?是否可以在这里添加我自己的自定义 xml 并且仍然符合规范?
【问题讨论】:
【参考方案1】:http://www.atomenabled.org/developers/syndication/atom-format-spec.php#extending_atom 记录了几种不同的方法。
您可以在atom:entry 末尾添加extension elements。
<atom:entry>
<!--- all the normal stuff --->
<mything:Thing xmlns:mything="http://example.com/example.xsd">
<!--- whatever --->
</mything:Thing>
</atom:entry>
【讨论】:
以上是关于在 atom 提要中公开数据的主要内容,如果未能解决你的问题,请参考以下文章