如何在xslt中的模板内的属性条件(或何时)使用

时间:2011-04-15 05:18:47

标签: xslt

全部好,

如何使用属性的if条件在每次循环时打印不同的值。 我有一个名为“AttributeName”的属性。当每次循环时(总共5次),这将采用不同的名称。

我尝试了一些东西..但它没有成功。我的输入XML将没有任何数据。我所要做的就是每次循环达到5次时打印不同的值。

输入XML:

<?xml version="1.0" encoding="UTF-8"?>
    </Solution>
    <Solution>
        <ID>22060000000000000000000002</ID>
        <Title>ABCD</Title>
        <Observations>
            <Observation>DEF</Observation>
        </Observations>
        <ProblemDescription> 1234</ProblemDescription>
        <ProblemCause>ADDD</ProblemCause>
        <RepairProcedures>
            <RepairProcedure>XYZ</RepairProcedure>
        </RepairProcedures>
        <ScenarioExplanation>
            <Scenario>JIJIJIJIJI</Scenario>
            <Scenario>SCENARIO1.</Scenario>
        </ScenarioExplanation>
        <DocumentReferences>
            <DocRef>NO DATA</DocRef>
        </DocumentReferences>
    </Solution>
</Solutions>

XSLT:

<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>  

<xsl:stylesheet><xsl:template>  
            <xsl:element name="Tables">

            <!-- Tables code here -->

            </xsl:element>
            <xsl:element name="Relationships">
                <xsl:for-each select="Solutions/Solution">
                    <xsl:if test="RepairProcedures/RepairProcedure!= ''  ">
                        <xsl:for-each select="RepairProcedures/RepairProcedure">
                            <xsl:variable name="vNumCols" select="5"/>
                            <xsl:element name="Relationship">
                                <xsl:for-each select="position() &lt; vNumCols">
                                    <xsl:attribute name="Action"><xsl:value-of select="'Insert'"/></xsl:attribute>
                                    <xsl:attribute name="DestinationKey"><xsl:value-of select="1"/></xsl:attribute>
                                    <xsl:attribute name="RelationshipSpec"><xsl:value-of select="'TableName'"/></xsl:attribute>
                                    <xsl:attribute name="SourceKey"><xsl:value-of select="1"/></xsl:attribute>
                                    <xsl:attribute name="RelCommonKey"><xsl:value-of select="1"/></xsl:attribute>
                                    <xsl:attribute name="AttributeName">
                                    <xsl:if test="position() = 1"><xsl:value-of select="CPComments"/></xsl:if>
                                    <xsl:if test="position() = 2"><xsl:value-of select="CPConflict"/></xsl:if>
                                    </xsl:attribute>
                                    <xsl:attribute name="AttributeValue"><xsl:value-of select="1"/></xsl:attribute>
                                </xsl:for-each>
                            </xsl:element>
                        </xsl:for-each>
                    </xsl:if>
                </xsl:for-each>
            </xsl:element>
        </xsl:element>
    </xsl:element>
</xsl:template>
</xsl:stylesheet>

我正在循环修复过程/ repairprocedure是获取“RelationshipSpec”文本。

预期输出

<Relationships>
<Relationship Action="Delete" DestinationKey="1" RelationshipSpec="XYZ" SourceKey="2" RelCommonKey="1_2" AttributeName="CPComments" AttributeValue=""/>  
<Relationship Action="Delete" DestinationKey="1" RelationshipSpec="XYZ" SourceKey="2" RelCommonKey="1_2" AttributeName="CPConflict" AttributeValue=""/>
<Relationship Action="Delete" DestinationKey="1" RelationshipSpec="XYZ" SourceKey="2" RelCommonKey="1_2" AttributeName="CPUserID" AttributeValue=""/>
<Relationship Action="Delete" DestinationKey="1" RelationshipSpec="XYZ" SourceKey="2" RelCommonKey="1_2" AttributeName="ProcessID" AttributeValue=""/>
<Relationship Action="Delete" DestinationKey="1" RelationshipSpec="XYZ" SourceKey="2" RelCommonKey="1_2" AttributeName="ProductId" AttributeValue=""/>         
</Relationships>

这5行中唯一更改的值是“AttributeName”。我试图打印5行,一个关系与AttributeName不同。

请帮我这样做。

我正在使用XSLT 1.0

谢谢你, RAMM

1 个答案:

答案 0 :(得分:0)

没有类似的内容:

<xsl:if test="position() = 1">
    <xsl:attribute name="FirstAttribute">
        <xsl:value-of select="CPComments"/>
    </xsl:attribute>
</xsl:if>
<xsl:if test="position() = 2">
    <xsl:attribute name="SecondAttribute">
        <xsl:value-of select="CPConflict"/>
    </xsl:attribute>
</xsl:if>

工作?

我可能更喜欢<xsl:choose>,但不管怎样它都不会更短。