我想使用XSL v1从XML中删除一些节点,具体取决于属性值。 到目前为止,我知道如何做到这一点(XSLT Remove Element Based On Attribute)
我的问题是我想将某种数组/字符串传递给XSL,这样我就可以告诉XSL要删除哪个节点。
例:
XML:
<Segments xmlns="http://www.exchangefortravel.org/xft/current" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Segments Name="PrixDispo" What="List">
<Segment xsi:type="SegmentProductType" Index="1">
<Code Role="Reference" Value="A"/>
<Descriptions></Descriptions>
</Segment>
<Segment xsi:type="SegmentProductType" Index="2">
<Code Role="Reference" Value="B"/>
<Descriptions></Descriptions>
</Segment>
<Segment xsi:type="SegmentProductType" Index="3">
<Code Role="Reference" Value="C"/>
<Descriptions></Descriptions>
</Segment>
<Segment xsi:type="SegmentProductType" Index="4">
<Code Role="Reference" Value="D"/>
<Descriptions></Descriptions>
</Segment>
</Segments>
</Segments>
XSL:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*" />
<xsl:param name="codes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Segments/Segment/Code[@Value='$code']" />
</xsl:stylesheet>
当我调用转换时,我将“A-D”之类的内容传递给“代码”参数。 我正在等待的结果是:
<Segments xmlns="http://www.exchangefortravel.org/xft/current" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Segments Name="PrixDispo" What="List">
<Segment xsi:type="SegmentProductType" Index="1">
<Code Role="Reference" Value="A"/>
<Descriptions></Descriptions>
</Segment>
<Segment xsi:type="SegmentProductType" Index="2">
<Code Role="Reference" Value="D"/>
<Descriptions></Descriptions>
</Segment>
</Segments>
</Segments>
我的两个问题是:
由于
修改: 我想我正在使用那个XSL来解决这个问题。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:xft="http://www.exchangefortravel.org/xft/current" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsl:output method="xml" indent="yes"/>
<xsl:param name="codes"/>
<xsl:template match="xft:Segment[@xsi:type='SegmentProductType']">
<xsl:variable name="current_code" select="xft:Code[@Role='Reference']/@Value"/>
<xsl:if test="contains($codes, $current_code)">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:if>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
EDIT2 :
好吧,实际上我试图做的是对话,意思是只保留'A'和'D'节点,但问题是一样的,当我找到怎么办时我会适应解决方案我在这里描述的问题。
我用我正在处理的真实内容更新了我的代码。
答案 0 :(得分:2)
您可以为XSLTProcessor ...
提供参数$xslt = new XsltProcessor();
$xslt->importStylesheet($xslDom);
$xslt->setParameter('', 'PARAMETER_NAME', 'A D');
...可以在XSLT中定义为样式表元素的子元素:
<xsl:stylesheet version="1.0" xmlns:xsl="...">
<xsl:param name="PARAMETER_NAME">default</xsl:param>
...
</xsl:stylesheet>
在XSLT中,document()函数可用于加载其他xml文档。该方法仅适用于“常量”值。例如,它不能在循环内使用。好处是它只在脚本运行中加载一次。即使包含调用的模板多次执行。
<xsl:stylesheet version="1.0" xmlns:xsl="...">
<xsl:variable name="values" select="document('values.xml')/values"/>
...
</xsl:stylesheet>
可以在document()中使用PHP Streamwrappers。如果您注册自己的streamwrapper,您可以在应用程序内部回电。
<xsl:stylesheet version="1.0" xmlns:xsl="...">
<xsl:variable name="values" select="document('mystream://identifier')/values"/>
...
</xsl:stylesheet>
可以从xslt调用(静态)php函数。这些函数也可以返回DOMDocument。与直接document()调用不同,它每次都执行,因此它可以在循环中使用局部变量。
$xslt = new XsltProcessor();
$xslt->importStylesheet($xslDom);
$xslt->registerPHPFunctions(array('callbackFetchingValues'));
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:php="http://php.net/xsl"
extension-element-prefixes="php">
<xsl:variable name="values" select="php:function('callbackFetchingValues')/values"/>
</xsl:stylesheet>
令牌列表是XML中的字符串,由空格分隔。最常见的是(X)HTML中的class属性。
<div class="tokenOne tokenTwo">...</div>
要匹配令牌列表字符串,您必须规范化字符串,将空格追加到开头和结尾,从而产生[space] [tokenOne] [space] [tokenTwo] [space]。之后,您可以检查[空格] [值] [空格]。在Xpath中:
segments/segment/code[contains(concat(' ', normalize-space($TOKEN_LIST), ' '), concat(' ', @value, ' '))]
如果值是节点集,您可以通过选择它来检查它。您必须将当前值放入变量中。
<xsl:template match="segments/segment/code">
<xsl:variable name="current" select="@value"/>
<xsl:if test="count($filterValues/value[text() = $current]) = 0">
<!-- not in filter -->
</xsl>
</xsl:template>
答案 1 :(得分:0)
正确传递参数时,以下XSLT将执行此操作:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="codes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="segment">
<xsl:choose>
<xsl:when test="contains($codes, code/@value)" /> <!-- Do nothing -->
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
以上XSLT将仅输出与传递给参数的代码不匹配的段。如果您想要相反(仅在参数中传递显示代码),请更改:
<xsl:template match="segment">
<xsl:choose>
<xsl:when test="contains($codes, code/@value)" /> <!-- Do nothing -->
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
要:
<xsl:template match="segment">
<xsl:choose>
<xsl:when test="contains($codes, code/@value)">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:when>
</xsl:choose>
</xsl:template>
答案 2 :(得分:0)
我终于做到了。 这是正确的XSL,用于排除所有元素,但具有允许代码的元素:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:xft="http://www.exchangefortravel.org/xft/current" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsl:output method="xml" indent="yes"/>
<xsl:param name="codes"/>
<!-- By Default copy all elements -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<!-- For the Segment elements retreive the coresponding code and look for a match -->
<xsl:template match="xft:Segment[@xsi:type='SegmentProductType']">
<xsl:variable name="current_code" sele ct="xft:Code[@Role='Reference']/@Value"/>
<!-- If we have valid code copy the element -->
<xsl:if test="contains($codes, concat($current_code, '-'))">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
非常感谢@MarkVeenstra