在原子提要中公开数据

时间:2008-11-03 21:08:11

标签: feed atom-feed

如何将额外数据添加到未映射到标准条目节点(标题,链接,ID,更新,摘要)的原子Feed中?是否可以在此处添加我自己的自定义xml并仍然符合规范?

1 个答案:

答案 0 :(得分:8)

http://www.atomenabled.org/developers/syndication/atom-format-spec.php#extending_atom记录了几种不同的方式。

您可以在extension elements

的末尾添加atom:entry
<atom:entry>
   <!--- all the normal stuff --->
   <mything:Thing xmlns:mything="http://example.com/example.xsd">
      <!--- whatever --->
   </mything:Thing>
</atom:entry>