我想使用 XSL v1 根据属性值从 XML 中删除某个节点。到目前为止,我知道该怎么做(XSLT基于属性删除元素(
我的问题是我想将某种数组/字符串传递给 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 来采用解决方案。
<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>
编辑2:
好的,所以实际上我试图做的是相反的,这意味着只保留"A"和"D"节点,但问题是相同的,当我找到如何做时,我会调整解决方案我在这里描述的问题。
我用我正在处理的真实内容更新了我的代码。
将值导入 XSLT
参数
您可以向 XSLT 程序提供参数...
$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。如果您注册了自己的流包装器,则可以在应用程序内回调。
<xsl:stylesheet version="1.0" xmlns:xsl="...">
<xsl:variable name="values" select="document('mystream://identifier')/values"/>
...
</xsl:stylesheet>
PHP 回调
可以从 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>
要匹配标记列表字符串,您必须规范化字符串,在开头和结尾附加空格,从而产生 [空格][tokenOne][空格][tokenTwo][空格]。之后,您可以检查[空格][值][空格]。在 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>
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>
我确实做到了。下面是用于排除除具有允许代码的元素之外的所有元素的正确 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