简体   繁体   English

XSLT-在for-each循环中从两个对象获取数据

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

I have a problem with xsl transformation. 我对xsl转换有疑问。 This is fragment of my code. 这是我的代码片段。 input.xml 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>

I need apply template for <contact> into for-each loop. 我需要将<contact>模板应用到for-each循环中。 This is required. 这是必需的。 xsl_template.xsl 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 与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>

Template for <contact> is missing. <contact>模板丢失。 I tried also use <xsl:variable> , but it doesnt work. 我试过也使用<xsl:variable> ,但是它不起作用。 How can I get it? 我怎么才能得到它?

If you need to show contact for person (same for all persons inside model), then this: 如果您需要显示人员的联系人(模型中的所有人员都相同),则此操作:

<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>

you need to adjust two things, 您需要调整两件事,

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

s/b S / B

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

and

<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 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>

under the xsl:for-each loop, you are under the context node person , so you must use the dot notation (..) to refer to the parent node. xsl:for-each循环下,您位于上下文节点person ,因此必须使用点符号(..)引用父节点。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM