我正在一个程序中使用XSLT并使用XML 1.0。所以,因为它在一个程序中,我不能使用其他语言来做到这一点。 在程序中,我可以选择一些关于我的数据的选项,但我无法从xslt获取它。代码现在是这样的:
chart1.Series["price"].BorderWidth = 4;
foreach(DataPoint dp in chart1.Series["price"].Points)
{
dp.Color = (dp.YValues[2] > dp.YValues[3]) ? Color.CadetBlue : Color.Pink;
}
我从'for-each'得到的答案是我选择的一些空白区域。我想做的是将代码与它所代表的de信息相关联。像001 =农业,002 =生物,003 =经济,等等。有人可以帮我这个吗?我如何强制xslt显示代码的名称? 我尝试做这个代码,但它不起作用:
<!-- MD_DataIdentification.topicCategory-->
<div class="itemInfo">
<span style="color: black; font-size: 13;">
<span style="color: black; font-size: 15; font-weight:bold;">Categoria temática:<br /></span>
<xsl:choose>
<xsl:when test="/metadata/dataIdInfo[1]/tpCat/TopicCatCd[(. != '001') and (. != '002') and (. != '003') and (. != '004') and (. != '005') and (. != '006') and (. != '007') and (. != '008') and (. != '009') and (. != '010')]">
<xsl:for-each select="/metadata/dataIdInfo[1]/tpCat/TopicCatCd[(. != '001') and (. != '002') and (. != '003') and (. != '004') and (. != '005') and (. != '006') and (. != '007') and (. != '008') and (. != '009') and (. != '010')]">
<xsl:value-of select="."/>
<xsl:if test="not(position()=last())">, </xsl:if>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<span class="noContent">No information (mandatory)</span>
</xsl:otherwise>
</xsl:choose>
</span>
</div>
但是当我使用它时,如果选择或不选择,我将收到所有未导入的名称。 如果有人能帮助我,我将非常感激。 :)
我还有另一个问题。在此&lt; (。!='004')&gt;,重点是什么意思?谢谢!
答案 0 :(得分:2)
很难回答你的问题,因为你没有提供任何背景或预期的输出。一般来说,给出这样的输入:
<强> XML 强>
<root>
<code>001</code>
<code>002</code>
<code>003</code>
<code>004</code>
<code>005</code>
</root>
和样式表:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="utf-8"/>
<xsl:template match="/root">
<div>
<xsl:for-each select="code">
<xsl:choose>
<xsl:when test=". = '001'">farming</xsl:when>
<xsl:when test=". = '002'">biologic</xsl:when>
<xsl:when test=". = '003'">economic</xsl:when>
<xsl:otherwise>
<span class="noContent">No information (mandatory)</span>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="position() != last()">, </xsl:if>
</xsl:for-each>
</div>
</xsl:template>
</xsl:stylesheet>
结果将是:
<div>farming, biologic, economic, <span class="noContent">No information (mandatory)</span>, <span class="noContent">No information (mandatory)</span></div>