XSLT 嵌套从 XML 节点值中选择



我已经查看了其他一些关于嵌套选择的帖子,并且不相信它们解决了我的用例。 本质上,我正在尝试通过 Web 服务在另一个系统中创建一个用户帐户,并且需要传递一个源自我的 xml 中的字段的登录 ID,该字段基本上可以是任何东西,例如员工 ID、电子邮件地址、UUID 等。 要使用的字段将来自生成 xml 的配置值。 为了简单起见,我已经缩写了我的 xml 和 xslt,所以请不要建议我使用 select or 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"/>

我被难住了。 有什么想法吗?

在普通 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"/>

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

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

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

exsltRegisterAll();

并确保在编译时引用库

-lexslt

相关内容

  • 没有找到相关文章

最新更新