我正在尝试使用过滤器从 XSL 中的 XML 参数中列出的字段从 XML 中获取数据:参数是这样的 xml:
<Catalog name="Catalog1">
<Fields>
<Field>ID</Field>
<Field>Name</Field>
<Field>Description</Field>
</Fields>
</Catalog>
所以我需要从另一个像这样的 XML 中检索这些元素:
<?xml version="1.0" encoding="UTF-8"?>
<Nodes>
<Node>
<Data>
<Attribute name="ID">Desktop</Attribute>
<Attribute name="Parent">administrator</Attribute>
<Attribute name="Name">Desktop</Attribute>
<Attribute name="Description">Desktop folder</Attribute>
</Data>
<Relationship>
<RelatedNodes>
<Node>
<Data>
<Attribute name="ID">administrator</Attribute>
<Attribute name="Parent"></Attribute>
<Attribute name="Name">administrator</Attribute>
<Attribute name="Description">administrator folder</Attribute>
</Data>
</Node>
</RelatedNodes>
</Relationship>
</Node>
</Nodes>
到目前为止,我所拥有的是一个像这样的 XSL 模板:
<?xml version="1.0"?>
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' >
<xsl:output method='text' encoding="UTF-8"/>
<xsl:param name="Fields"> <!--type="xml"--></xsl:param>
<xsl:template match="/">
{
<xsl:apply-templates select="//Data[Attribute[@name='Parent']='' ]/parent::Node" />
}
</xsl:template>
<xsl:template match="Node" >
"children":[
{
<xsl:for-each select="$Fields/Catalog/Fields/Field">
<xsl:variable name="AttributeName" select="." />
"<xsl:value-of select="$AttributeName"/>": " <xsl:value-of select="Data/Attribute[@name=$AttributeName]" /> ",
</xsl:for-each>
<xsl:apply-templates select="ancestor::Node[1]"/>
}
]
</xsl:template>
</xsl:stylesheet>
但是不起作用,xpath 没有得到值,我认为这是因为我必须在 xpath 的过滤器中设置“'”字符,这就是我使用 concat 但 concat 只是将 xpath 作为返回给我的原因字符串,有什么想法吗?,结果应该是这样的:
{
"children":[
{
"ID": "1",
"Name": "Name1",
"Description: "Desc1",
}
]
}
谢谢!