xml 动态产品Atom XML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 动态产品Atom XML相关的知识,希望对你有一定的参考价值。

---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>{{ site.title }}</title>
  {% for product in site.data.products limit:25 %}{% if forloop.first == true %}{% assign updated = post.atomdate %}<updated>{{ updated | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>{% endif %}{% endfor %}
  <link rel="self" href="{{ site.url }}/atom.xml"/>
  <author><name>Kin Lane</name></author>
  <id>{{ site.url }}/data/atom.xml</id>
	{% for product in site.data.products limit:25 %}<entry>
    <title>{{ product.title }}</title>
    <link href="{{ site.url }}/products/{{ product.id }}"/>
    <updated>{{ post.atomdate | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>
    <content><![CDATA[{{ post.description | strip_html | xml_escape }}]]></content>
    <id>{{ site.url }}/products/{{ product.id }}</id>
  </entry>{% endfor %}
</feed>

以上是关于xml 动态产品Atom XML的主要内容,如果未能解决你的问题,请参考以下文章

无法解析和读取 xml 数据

html 液体中的动态XML产品

xml 订单报告包含动态标题(产品代码)。

xml 订单报告包含动态标题(产品代码)。

xml 订单报告包含动态标题(产品代码)。

python中的Atom feed(XML)解析[重复]