我正在研究 XSLT。我找不到 xslt。我努力了。
资源:
<?xml version="1.0" encoding="ISO-8859-1"?>
<body>
<selectedComp>bodyParagraphText</selectedComp>
<value>
<p xmlns="http://www.w3.org/1999/xhtml">abd</p>
<p xmlns="http://www.w3.org/1999/xhtml"> </p>
<p xmlns="http://www.w3.org/1999/xhtml">afh</p>
<p xmlns="http://www.w3.org/1999/xhtml"> </p>
<p xmlns="http://www.w3.org/1999/xhtml">AAA</p>
<p xmlns="http://www.w3.org/1999/xhtml"> </p>
<p xmlns="http://www.w3.org/1999/xhtml">ZZZ</p>
</value>
</body>
XSLT 写道:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:widget="aaa">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<xsl:for-each select="body/value/p">
<xsl:element name= "widget:bodyParagraphText">
<xsl:value-of select="."/>
</xsl:element>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
但我没有得到任何东西。最后我得到了空的xml。
但需要输出:
<widget:bodyParagraphText>
<text>abd</text>
</widget:bodyParagraphText>
<widget:bodyParagraphText>
<text> </text>
</widget:bodyParagraphText>
<widget:bodyParagraphText>
<text>afh</text>
</widget:bodyParagraphText>
<widget:bodyParagraphText>
<text> </text>
</widget:bodyParagraphText>
<widget:bodyParagraphText>
<text>AAA</text>
</widget:bodyParagraphText>
<widget:bodyParagraphText>
<text> </text>
</widget:bodyParagraphText>
任何人都可以建议如何做到这一点。
谢谢你。