我希望,我正在尝试为以下xml创建一个XSL。
<?xml version="1.0" encoding="UTF-8"?>
<CurrentUsage xmlns="http://au.com.amnet.memberutils/"xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OtherLimit>0</OtherLimit>
<PeerLimit>0</PeerLimit>
<PeriodEnd>2013-06-15T00:00:00</PeriodEnd>
<PeriodStart>2013-05-15T00:00:00</PeriodStart>
<PlanName>ADSL 2+ Enabled 120G/180G - $69.00</PlanName>
<RateLimited>0</RateLimited>
<otherInGB>9.51</otherInGB>
<otherOutGB>2.06</otherOutGB>
<peerInGB>0.12</peerInGB>
<peerOutGB>0.02</peerOutGB>
</CurrentUsage>
我想要摆脱的只是......的内容。
我尝试了很多不同的XSL文档(我不是专家),但我遇到了困难,因为在我看来,实际上没有父节点。这是正确的陈述吗?
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:for-each select="CurrentUsage">
<xsl:value-of select="otherInGB"/>
<br></br>
<xsl:value-of select="otherOutGB"/>
<br></br>
<xsl:value-of select="peerInGB"/>
<br></br>
<xsl:value-of select="peerOutGB"/>
<br></br>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
我知道这是错的,因为它没有返回任何东西,我知道for-each选择实际上是导致问题。无论如何,任何帮助或指示将不胜感激。
干杯,
遄
答案 0 :(得分:1)
这里的主要问题是您的xml文件有一个名称空间。因此,您需要将名称空间(带前缀)添加到xslt。 尝试这样的事情:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:mu="http://au.com.amnet.memberutils/"
exclude-result-prefixes="mu">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="mu:CurrentUsage">
<xsl:value-of select="mu:otherInGB"/>
<br></br>
<xsl:value-of select="mu:otherOutGB"/>
<br></br>
<xsl:value-of select="mu:peerInGB"/>
<br></br>
<xsl:value-of select="mu:peerOutGB"/>
<br></br>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates select="mu:CurrentUsage " />
</xsl:template>
</xsl:stylesheet>
将生成以下输出:
<?xml version="1.0"?>
9.51<br/>2.06<br/>0.12<br/>0.02<br/>