循环遍历值列表/访问不同级别的xsl层次结构

时间:2014-05-29 11:45:15

标签: xslt-1.0

我正在尝试遍历用作参数的值列表,并从我的xml文件的层次结构的不同级别获取一些其他值。我写了一个例子,我希望以相关的方式突出问题。

约束:我必须使用xslt 1.0(xalan我相信),但如果需要,我可以使用exsl扩展。

我有一个包列表,每个包都包含一个对象列表。

问题:对象描述不保留在层次结构中较高的另一个位置。

所以我想首先得到一个我将存储在变量中的包列表。

然后在第二步中获取/ root / packagelist / package中的对象的id [@ id = $ vid] / objectlist / object

然后在第三步中,通过调用在其他地方编写的一些xslt规则来处理每个交易,这将需要对象id作为参数。

刚刚开始使用xslt,但据我所知,xsl for循环不回答这个问题,在任何情况下都应该避免(不要试图开始辩论,只是为了遵循我不熟悉的最佳实践用)。 另外我读到有些使用node-set解决了类似的问题,但无法弄清楚如何。

非常感谢任何帮助或指针来解决这个问题。

此致

输入xml:

<?xml version="1.0" encoding="utf-8" ?>
<root>
  <objectlist>
    <object id="1">
      <type>ok</type>
      <value>this is object 1</value>
    </object>
    <object id="3">
      <type>ko</type>
      <value>this is object 3</value>
    </object>
    <object id="2">
      <type>ok</type>
      <value>this is object 2</value>
    </object>
    <object id="4">
      <type>ko</type>
      <value>this is object 4</value>
    </object>
  </objectlist>
  <packagelist>
    <package id="a">
      <type>ok</type>
      <value>this is package a</value>
      <objectlist>
        <object id="1" />
        <object id="3" />
      </objectlist>
    </package>
    <package id="b">
      <type>ko</type>
      <value>this is package b</value>
      <objectlist>
        <object id="2">
        </object>
        <object id="4">
        </object>
      </objectlist>
    </package>
  </packagelist>
</root>

xslt解决方案尝试:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt"
>
  <xsl:output method="xml" indent="yes"/>

  <xsl:template match="package" mode="input01.package">
      <xsl:value-of select="@id" />      
  </xsl:template>

  <xsl:template match="object" mode="input01.package.objectid" >
      <xsl:value-of select="@id" />      
  </xsl:template>

  <xsl:template match="value" mode="input01.object" >
      <xsl:value-of select="." />         
  </xsl:template>

  <xsl:template match="object" mode="input01.object" >
      <xsl:apply-templates select="value" mode="input01.object" />      
  </xsl:template>

  <xsl:template match="package" mode="input01.package.objectid" >
      <xsl:apply-templates select="objectlist/object" mode="input01.package.objectid" />      
  </xsl:template>

  <xsl:template match="/" mode="input01">


    <xsl:variable name="vPackageIDList" >
      <xsl:apply-templates select="/root/packagelist/package" mode="input01.package" />
    </xsl:variable>

    <xsl:variable name="vobjectIDList">   
      <xsl:apply-templates select="/root/packagelist/package" mode="input01.package.objectid" />    
    </xsl:variable>

    <xsl:apply-templates select="/root/objectlist/object" mode="input01.object" />

  </xsl:template>

  <xsl:template match="/" >
    <xsl:apply-templates select="." mode="input01" />
  </xsl:template>
</xsl:stylesheet>

转变的预期输出将是,例如:

<myobjectlist>
    <myobject id="1" package="a">
        <type>ok</type>
        <value>this is object 1</value>
    </myobject>
    <myobject id="3" package="a">
        <type>ko</type>
        <value>this is object 3</value>
    </myobject>
    <myobject id="2" package="b">
        <type>ok</type>
        <value>this is object 2</value>
    </myobject>
    <myobject id="4" package="b">
        <type>ko</type>
        <value>this is object 4</value>
    </myobject>
</myobjectlist>

与问题无关,但如果它可以使测试更容易,那么c#代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;

namespace XSLTest
{
    class Program
    {
        static void Main(string[] args)
        {
            String filetest = "input01.xml";
            XDocument xdoc = XDocument.Load(filetest, LoadOptions.None);
            XsltHandler xl = new XsltHandler();
            String xmlres = xl.Get(xdoc);
            Console.WriteLine("result=" + xmlres);
        }
    }
}

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;
using System.Xml.Xsl;

namespace XSLTest
{
    class XsltHandler
    {
        internal string Get(XDocument aXDocument)
        {
            XslCompiledTransform xslt = new XslCompiledTransform();
            XmlReader reader = XmlReader.Create("input01.xslt");
            xslt.Load(reader);
            StringWriter writer = new StringWriter();
            XsltArgumentList arglist = new XsltArgumentList();
            xslt.Transform(aXDocument.CreateReader(), arglist, writer);

            return writer.ToString();
        }
    }
}

编辑:

嗨,迈克尔,

非常感谢您的回答以及代码示例。 在尝试清楚说明的同时,我可能会过度简化问题,对此感到抱歉。 也许最好的方法是让我用伪代码来描述它:

ObjectType getPackageType(PackageID pid)
{
    Package p = getPackage(pid);
    List<Object> objlist = getObjectList(p);
    for (int i = 1; i < objlist.size(); ++i)
    {
        if (objlist[i - 1].type != objlist[i])
            return new ObjectType("Error");
    }
    return objlist.type;
}

所以用户会做这样的事情:

<xsl:template select="/" mode="input01">
    <xsl:with-param name="pPackageID" />
        <xsl:value select="'b'" />
    </xsl:with-param>
</xsl:template>

在我正在开发的项目中,我有很多这种形式的模板:

<xsl:template match="/" mode="type">
    <xsl:param name="objectID />
    <xsl:value-of select="/root/objectlist/object[@id=$objectID]/type" />
</xsl:template>

从对象中提取各种数据并计划使用它们。我希望这可以澄清问题。 不确定我是否可以用你的答案来解决这个问题,我没有看到它,但我会睡在它上面......

最佳,

ps:关于你的问题,没有任何对象可以属于两个不同的包。但是我无法控制xml输入的结构,因为通常就是这种情况。

1 个答案:

答案 0 :(得分:1)

我相信你正在使它变得比它需要的复杂得多。上述结果可以通过以下方式实现:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:key name="package" match="package" use="objectlist/object/@id" />

<xsl:template match="/root">
    <myobjectlist>
        <xsl:apply-templates select="objectlist/object"/>
    </myobjectlist>
</xsl:template>

<xsl:template match="object">
    <myobject id="{@id}" package="{key('package', @id)/@id}">
        <xsl:copy-of select="*"/>
    </myobject>
</xsl:template>

</xsl:stylesheet>

或者,如果您愿意:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:key name="package" match="package" use="objectlist/object/@id" />

<xsl:template match="/">
    <myobjectlist>
        <xsl:for-each select="root/objectlist/object">
            <myobject id="{@id}" package="{key('package', @id)/@id}">
                <xsl:copy-of select="*"/>
            </myobject>
        </xsl:for-each>
    </myobjectlist>
</xsl:template>

</xsl:stylesheet>

这假设每个对象仅在一个包中。我强调这一点,因为您的输入模式旨在支持与此假设相矛盾的情况。