0

我想从下面的 XML 中获取“LIVE”。我读过类似的帖子,因此一直在使用 local-name() 函数,但无论我使用什么 XSLT,我都无法获得它。

<?xml version="1.0"?>
<cns:customer xmlns:cns="https://services.cns.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://services.cns.com docs/xsd/customer.xsd">
    <cns:userId>1001</cns:userId>
    <cns:status>LIVE</cns:status>
    <cns:type wholesale="true" suspended="false">W1</cns:type>
    <cns:properties>
        <cns:property>
            <cns:name>Name</cns:name>
            <cns:value>Bob</cns:value>
        </cns:property>
    </cns:properties>
</cns:customer>

这是我正在使用的 XSLT。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text" encoding="UTF-8"/>
    <xsl:template match="//*[local-name()='status']/text()">
        <xsl:value-of select="."/>
    </xsl:template>
</xsl:stylesheet>

我正在使用 Oxygen 应用程序进行测试。我认为处理器是 Saxon 6.5.5。

我得到的输出是:

1001
LIVE
W1

    Name
    Bob

谢谢,保罗

4

2 回答 2

2

根据您最近对问题的编辑来回答。

只需使用:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text" encoding="UTF-8"/>
    <xsl:template match="//*[local-name()='status']/text()">
        value: <xsl:value-of select="."/>
    </xsl:template>
</xsl:stylesheet>

1001, W1 ....etc 与任何模板都不匹配,因此由默认模板处理,它只是将其回显到输出中。

现在您还使命名空间版本工作:

<xsl:template match="/c:customer/c:status" xmlns:c="https://services.cns.com">
    value: <xsl:apply-templates select="text()"/>
</xsl:template>
于 2012-05-19T15:02:36.997 回答
1

您应该使用 XSLT 处理器注册名称空间。但是如果你不能,你应该能够执行下面的 XPath 表达式:

//*[local-name()="status"]/text()
于 2012-05-19T14:38:25.733 回答