簡體   English   中英

XSLT-在for-each循環中從兩個對象獲取數據

[英]XSLT - get data from two objects in for-each loop

我對xsl轉換有疑問。 這是我的代碼片段。 input.xml中

<models>
    <model>
        <contact>
            <city>Tokyo</city>
            <telephone>555-888-999</telephone>
        </contact>
        <person>
            <name>Anna</name>
            <surname>Smith</surname>
            <age>33</age>
        </person>
        <person>
            <name>Melissa</name>
            <surname>MacBeth</surname>
            <age>26</age>
        </person>
    </model>
    <model>
        <contact>
            <city>New York</city>
            <telephone>987-254-845</telephone>
        </contact>
        <person>
            <name>Michael</name>
            <surname>Affronti</surname>
            <age>49</age>
        </person>
        <person>
            <name>Arthur</name>
            <surname>Bertrand</surname>
            <age>38</age>
        </person>
        <person>
            <name>Simon</name>
            <surname>Morris</surname>
            <age>22</age>
        </person>
    </model>
</models>

我需要將<contact>模板應用到for-each循環中。 這是必需的。 xsl_template.xsl

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">

        <xsl:for-each select="/models/model">
            <xsl:apply-templates select="." />
        </xsl:for-each>
    </xsl:template>

    <xsl:template match="contact">
        <phoneNo>
            <xsl:value-of select="city" />
        </phoneNo>
    </xsl:template>

    <xsl:template match="model">
        <xsl:for-each select="person">
            <responsible>
                <xsl:apply-templates select="contact" />
                <xsl:apply-templates select="." />
            </responsible>

        </xsl:for-each>
    </xsl:template>

    <xsl:template match="person">
        <person>
            <xsl:value-of select="name" />
            <xsl:text>, </xsl:text>
            <xsl:value-of select="surname" />
        </person>
    </xsl:template>
</xsl:stylesheet>

與Output.xml

<?xml version="1.0" encoding="UTF-8"?>
<responsible>
    <person>Anna, Smith</person>
</responsible>
<responsible>
    <person>Melissa, MacBeth</person>
</responsible>
<responsible>
    <person>Michael, Affronti</person>
</responsible>
<responsible>
    <person>Arthur, Bertrand</person>
</responsible>
<responsible>
    <person>Simon, Morris</person>
</responsible>

<contact>模板丟失。 我試過也使用<xsl:variable> ,但是它不起作用。 我怎么才能得到它?

如果您需要顯示人員的聯系人(模型中的所有人員都相同),則此操作:

<xsl:template match="model">
    <xsl:for-each select="person">
        <responsible>
            <xsl:apply-templates select="preceding-sibling::contact" />
            <xsl:apply-templates select="." />
        </responsible>

    </xsl:for-each>
</xsl:template>

您需要調整兩件事,

<xsl:template match="contact">
    <phoneNo>
        <xsl:value-of select="city" />
    </phoneNo>
</xsl:template>

S / B

<xsl:template match="contact">
    <phoneNo>
        <xsl:value-of select="telephone" />
    </phoneNo>
</xsl:template>

<xsl:template match="model">
    <xsl:for-each select="person">
        <responsible>
            <xsl:apply-templates select="contact" />
            <xsl:apply-templates select="." />
        </responsible>
    </xsl:for-each>
</xsl:template>

S / B

<xsl:template match="model">
    <xsl:for-each select="person">
        <responsible>
            <xsl:apply-templates select="../contact" />
            <xsl:apply-templates select="." />
        </responsible>
    </xsl:for-each>
</xsl:template>

xsl:for-each循環下,您位於上下文節點person ,因此必須使用點符號(..)引用父節點。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM