xslt从xml节点值中嵌套选择

时间:2018-07-05 14:46:34

标签: xml xslt libxslt

我已经阅读了其他一些有关嵌套选择的文章,并且不认为它们可以解决我的用例。本质上,我试图通过Web服务在另一个系统中创建一个用户帐户,并且需要传递一个登录ID,该登录ID源自xml中的一个字段,该字段实际上几乎可以是任何东西,例如员工ID,电子邮件地址,UUID等。使用的字段将来自生成xml的配置值。为了简单起见,我已经将xml和xslt缩写了,所以请不要建议使用select或if语句,因为我需要保留可能的xml字段以供选择。

示例XML:

<root>
  <General>
    <Name Prefix="MR" First="Mickey" Middle="M" Last="Mouse" Suffix="I" Title="BA" Gender="M" BirthMonth="02" BirthDay="26" BirthYear="1984"/>
    <Email Work="test9999@acme.com" Home="Homeemail@gmail.com"/>
    <EmployeeId>9948228</EmployeeId>
  </General>
  <ConfigProperties>
    <LoginID>root/General/EmployeeId</LoginID>
  </ConfigProperties>
</root>

XSL示例:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="no" encoding="utf-8" indent="yes" />
<xsl:template match="/">
  <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <xsl:variable name="xxLI" select="root/ConfigProperties/LoginID" />
    <xsl:attribute name="LoginId"><xsl:value-of select="$xxLI"/></xsl:attribute>
  </Response>
</xsl:template>
</xsl:stylesheet>

转换后的XML:

<Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          LoginId="root/General/EmployeeId"/>

我真正希望得到的是这样的东西:

<Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          LoginId="9948228"/>

我很困惑。有什么想法吗?

2 个答案:

答案 0 :(得分:1)

在普通XSLT 1中无法执行此操作,但是如果您的XSLT处理器支持“动态”扩展(XALAN支持它),则可以执行以下操作:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:dyn="http://exslt.org/dynamic"
    extension-element-prefixes="dyn">

    <xsl:output method="xml" omit-xml-declaration="no" encoding="utf-8" indent="yes" />
    <xsl:template match="/">
        <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <xsl:variable name="xxLI" select="root/ConfigProperties/LoginID" />
            <xsl:attribute name="LoginId"><xsl:value-of select="dyn:evaluate($xxLI)"/></xsl:attribute>
        </Response>
    </xsl:template>
</xsl:stylesheet>

我使用XALAN在Oxygen / XML中对此进行了测试,并获得了输出

<?xml version="1.0" encoding="utf-8"?>
<Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" LoginId="9948228"/>

答案 1 :(得分:0)

谢谢-在libxslt的正确实现上花了几个小时后,才像魅力一样工作。对于使用c的感兴趣的任何人,请声明以下内容:

#include <libexslt/exslt.h>
#include <libexslt/exsltconfig.h>

,然后在代码中包含以下行:

exsltRegisterAll();

并确保在编译时引用该库

-lexslt