您知道如何将XML转换为纯文本文件(example.txt)吗?我已经使用过,只是从浏览器复制文本并粘贴到备忘应用程序方法。但我想使这种方式更简单。
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="example.xsl"?>
<products>
<begin><<<begin>>></begin>
<mapid><<<mapid>>>{Sku}</mapid>
<price><<<price>>>{Price}</price>
<pname><<<pname>>>{Title}</pname>
<pgurl><<<pgurl>>>{Permalink}</pgurl>
<deliv><<<deliv>>>0</deliv>
<ftend><<<ftend>>></ftend>
</products>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:for-each select="products">
<xsl:value-of select="."/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
<<<begin>>>
<<<mapid>>>FOOD19278
<<<price>>>35
<<<pname>>>example product
<<<pgurl>>>https://example.com/
<<<deliv>>>0
<<<ftend>>>
<<<begin>>>
<<<mapid>>>FOOD19278
<<<price>>>35
<<<pname>>>example product
<<<pgurl>>>https://example.com/
<<<deliv>>>0
<<<ftend>>>