不,基本上。但是,您应该能够使用以下内容:
<xsl:key name="ids" match="*[@z:Id]" use="@z:Id"/>
然后使用key
传递@z:Ref
当前节点的 xsl 函数,其中z
是xmlns
别名http://schemas.microsoft.com/2003/10/Serialization/
- 这至少将始终保持使用相同。
完整示例 - 首先是 xslt(“my.xslt”):
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/"
xmlns:dcs="http://schemas.datacontract.org/2004/07/"
>
<xsl:key name="ids" match="*[@z:Id]" use="@z:Id"/>
<xsl:output method="xml" indent="yes"/>
<xsl:template match="*[@z:Ref]">
<xsl:param name="depth" select="5"/>
<xsl:apply-templates select="key('ids', @z:Ref)">
<xsl:with-param name="depth" select="$depth"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="*[@z:Id]">
<xsl:param name="depth" select="5"/>
<xsl:value-of select="$depth"/>: <xsl:value-of select="name()"/><xsl:text xml:space="preserve">
</xsl:text>
<xsl:if test="$depth > 0">
<xsl:apply-templates select="dcs:*">
<xsl:with-param name="depth" select="($depth)-1"/>
</xsl:apply-templates>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
请注意,这通过$depth
参数(递减)走了 5 个级别;关键部分是match
任何元素上的初始值*[@z:Ref]
,然后用于key
将相同的请求代理到原始元素,如通过@z:Id
. 这意味着当我们移动到子元素时,我们只需要使用类似的东西:
<xsl:apply-templates select="dcs:*"/>
虽然我们显然可以更细化,例如:
<xsl:apply-templates select="dcs:Foo"/>
另请注意,要添加Foo
-specific match
,您将添加:
<xsl:template match="dcs:Foo[@z:Id]"><!-- --></xsl:template>
以确保我们的*[@z:Ref]
匹配继续处理引用转发。
和 C#:
using System;
using System.IO;
using System.Runtime.Serialization;
using System.Text;
using System.Xml;
using System.Xml.Xsl;
[DataContract]
public class Foo
{
[DataMember]
public Bar Bar { get; set; }
}
[DataContract]
public class Bar
{
[DataMember]
public Foo Foo { get; set; }
}
static class Program
{
static void Main()
{
var foo = new Foo();
var bar = new Bar();
foo.Bar = bar;
bar.Foo = foo;
using (var ms = new MemoryStream())
{
var ser = new DataContractSerializer(typeof(Foo), new DataContractSerializerSettings {
PreserveObjectReferences = true
});
ser.WriteObject(ms, foo);
Console.WriteLine(Encoding.UTF8.GetString(ms.GetBuffer(), 0, (int)ms.Length));
Console.WriteLine();
ms.Position = 0;
var xslt = new XslCompiledTransform();
xslt.Load("my.xslt");
using (var reader = XmlReader.Create(ms))
{
xslt.Transform(reader, null, Console.Out);
}
}
Console.WriteLine();
Console.WriteLine("press any key");
Console.ReadKey();
}
}