我只是无法使排序功能正常工作。
基本上我正在尝试与XSLT sort by attribute value相同,但是它不起作用
输入为
<?xml version="1.0" encoding="UTF-8"?>
<response>
<result>
<doc>
<str name="hash1">EBFF15C2FB15BDD9C069EDF272EF43E738B276AA</str>
<str name="org_data">
<items>
<orgdata amount ="5433" />
</items>
</str>
</doc>
<doc>
<str name="hash1">8CB2237D0679CA88DB6464EAC60DA96345513964</str>
<str name="org_data">
<items>
<orgdata amount_rur="300"/>
<orgdata amount_rur="100"/>
<orgdata amount_rur="200"/>
<orgdata amount_rur="200" />
</items>
</str>
</doc>
</result>
</response>
我正在尝试这样的事情:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:output method="xml" indent="yes" />
<xsl:param name="rta-hashParticipantData1" select = "'8CB2237D0679CA88DB6464EAC60DA96345513964'" />
<xsl:param name="rta-hashParticipantData2" select = "'EBFF15C2FB15BDD9C069EDF272EF43E738B276AA'" />
<xsl:param name="rta-hashParticipantData3" />
<xsl:param name="rta-role" select = "'123'" />
<xsl:template match="result">
<xsl:copy>
<roleName Role="{$rta-role}">
<xsl:for-each-group select="doc" group-by="str[@name='hash1']">
<xsl:choose>
<xsl:when test="current-group()/str[@name='hash1']=$rta-hashParticipantData1">
<hashData hashName= '1' hashValue="{current-group()/str[@name='hash1']}" >
<xsl:apply-templates select="current-group()/str[@name='org_data']" />
</hashData>
</xsl:when>
<xsl:when test="current-group()/str[@name='hash1']=$rta-hashParticipantData2">
<hashData hashName= '2' hashValue="{current-group()/str[@name='hash1']}" >
<xsl:apply-templates select="current-group()/str[@name='org_data']" />
</hashData>
</xsl:when>
<xsl:when test="current-group()/str[@name='hash1']=$rta-hashParticipantData3">
<hashData hashName= '3' hashValue="{current-group()/str[@name='hash1']}" >
<xsl:apply-templates select="current-group()/str[@name='org_data']" />
</hashData>
</xsl:when>
</xsl:choose>
</xsl:for-each-group>
</roleName>
</xsl:copy>
</xsl:template>
<xsl:template match="photoUrls|str">
<xsl:apply-templates select="*"/>
</xsl:template>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="roleName">
<xsl:copy>
<xsl:apply-templates select="hashData">
<xsl:sort select="@hashName"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
所以,我是
1)按hash1值分组数据
2)根据全局参数添加一些信息(角色和哈希号)。更具体地说,我要添加具有hashName(哈希数)和hashValue(用于调试的哈希值)属性的hashData元素。
3)清理“ str”内容
4)尝试按hashData / @ hashName排序一个角色内的数据
最后一个不起作用(如果我与另一个XSL一起使用,它会起作用)。 因此,问题是-如何在同一XSL中完成所有操作,为什么它不能按我的方式工作?
答案 0 :(得分:1)
似乎您想对要创建的结果进行排序,因此请尝试将创建hashData
元素的分组包装到xsl:perform-sort
中:
<xsl:perform-sort>
<xsl:sort select="@hashName"/>
<xsl:for-each-group select="doc" group-by="str[@name='hash1']">
<xsl:choose>
<xsl:when test="current-group()/str[@name='hash1']=$rta-hashParticipantData1">
<hashData hashName= '1' hashValue="{current-group()/str[@name='hash1']}" >
<xsl:apply-templates select="current-group()/str[@name='org_data']" />
</hashData>
</xsl:when>
<xsl:when test="current-group()/str[@name='hash1']=$rta-hashParticipantData2">
<hashData hashName= '2' hashValue="{current-group()/str[@name='hash1']}" >
<xsl:apply-templates select="current-group()/str[@name='org_data']" />
</hashData>
</xsl:when>
<xsl:when test="current-group()/str[@name='hash1']=$rta-hashParticipantData3">
<hashData hashName= '3' hashValue="{current-group()/str[@name='hash1']}" >
<xsl:apply-templates select="current-group()/str[@name='org_data']" />
</hashData>
</xsl:when>
</xsl:choose>
</xsl:for-each-group>
</xsl:perform-sort>
或分组为一个变量,然后通过apply-templates推送变量的内容。仅当您在输入树或临时树中创建了具有该名称的元素时,才能使用带有match="roleName"
的模板。
答案 1 :(得分:1)
一种方法可能是定义单个参数,该参数由逗号分隔的哈希表组成,然后使用tokenize
和index-of
来计算hashName。
这样做的好处是可以删除xsl:choose
,并且还允许使用三个以上的参数。
尝试使用此XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:output method="xml" indent="yes" />
<xsl:param name="rta-role" select = "'123'" />
<xsl:param name="rta-hashParticipantData" select="'8CB2237D0679CA88DB6464EAC60DA96345513964,EBFF15C2FB15BDD9C069EDF272EF43E738B276AA'" />
<xsl:template match="result">
<xsl:variable name="rta-hashParticipantDataList" select="tokenize($rta-hashParticipantData, ',')" />
<xsl:copy>
<roleName Role="{$rta-role}">
<xsl:for-each-group select="doc" group-by="str[@name='hash1']">
<xsl:sort select="index-of($rta-hashParticipantDataList, current-grouping-key())" />
<hashData hashName="{index-of($rta-hashParticipantDataList, current-grouping-key())}" hashValue="{current-group()/str[@name='hash1']}" >
<xsl:apply-templates select="current-group()/str[@name='org_data']" />
</hashData>
</xsl:for-each-group>
</roleName>
</xsl:copy>
</xsl:template>
<xsl:template match="photoUrls|str">
<xsl:apply-templates select="*"/>
</xsl:template>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>