gpt4 book ai didi

xml - 创建 XSL 样式表以根据输入参数省略不需要的元素

转载 作者:数据小太阳 更新时间:2023-10-29 01:51:56 25 4
gpt4 key购买 nike

这会有点长和具体,所以请耐心等待。我了解 XSLT 的工作原理,但我不知道执行操作的所有元素。如果您能提供任何帮助,我们将不胜感激。

假设我有一本用 XML 编写的 737 飞行员手册。但是,有 3 种类型的 737(400、600 和 800),尽管手册中 90% 的内容对于这三种类型都是相同的,但仍有特定部分仅适用于每种类型。有些飞行员只会了解 1 或 2 架(有时是全部 3 架)喷气式飞机,因此我想省略与他们无关的部分。以下是我设置 XML 的方式:

<manual>
<section>A: This is relevant for every type</section>
<section t600="no" t800="no">B: This is relevant only for the 737-400</section>
<section t800="no">C: This is relevant for 737-400 and 737-600</section>
<section t400="no">D: This is relevant for 737-600 and 737-800</section>
</manual>

我希望能够以某种方式指定我只对 737-800 感兴趣并获得这样的手册:

<manual>
<section>A: This is relevant for every type</section>
<section>D: This is relevant for 737-600 and 737-800</section>
</manual>

或者对于对两种喷气式飞机感兴趣的不同飞行员,比如 737-400 和 737-600,手册将如下所示:

<manual>
<section>A: This is relevant for every type</section>
<section>B: This is relevant only for the 737-400</section>
<section>C: This is relevant for 737-400 and 737-600</section>
<section>D: This is relevant for 737-600 and 737-800</section>
</manual>

我可以访问源 XML,所以如果我设置它的方式没有意义,我可以更改它。我的想法是,因为对于所有类型来说,几乎一切都是一样的,所以选择退出更有意义,但我意识到这可能会让匹配变得更难?我不确定。

再次感谢您的关注!如果我遗漏了什么,请告诉我。

最佳答案

我。 XSLT 2.0 解决方案:

<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:param name="pInterests">
<interest topic="t800"/>
</xsl:param>


<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>

<xsl:template match=
"section[some $t in $pInterests/*/@topic
satisfies
not($t = current()/@*[. eq 'no']/name())
]
">
<section><xsl:apply-templates/></section>
</xsl:template>

<xsl:template match="section"/>
</xsl:stylesheet>

应用于提供的 XML 文档时:

<manual>
<section>A: This is relevant for every type</section>
<section t600="no" t800="no">B: This is relevant only for the 737-400</section>
<section t800="no">C: This is relevant for 737-400 and 737-600</section>
<section t400="no">D: This is relevant for 737-600 and 737-800</section>
</manual>

产生想要的、正确的结果:

<manual>
<section>A: This is relevant for every type</section>
<section>D: This is relevant for 737-600 and 737-800</section>
</manual>

如果我们在转换中替换当前参数:

 <xsl:param name="pInterests">
<interest topic="t800"/>
</xsl:param>

:

 <xsl:param name="pInterests">
<interest topic="t400"/>
<interest topic="t600"/>
</xsl:param>

再次对同一个 XML 文档应用修改后的转换,我们也得到了想要的正确结果:

<manual>
<section>A: This is relevant for every type</section>
<section>B: This is relevant only for the 737-400</section>
<section>C: This is relevant for 737-400 and 737-600</section>
<section>D: This is relevant for 737-600 and 737-800</section>
</manual>

二。 XSLT 1.0 解决方案:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:param name="pInterests">
<interest topic="t800"/>
</xsl:param>

<xsl:key name="kSectionTypeAttrByName" match="section/@*"
use="concat(generate-id(..),'|', name())"/>

<xsl:variable name="vInterests" select=
"document('')/*/xsl:param[@name='pInterests']/*"/>

<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>

<xsl:template match="section">
<xsl:variable name="vSec" select="."/>

<xsl:variable name="vHasInterest">
<xsl:for-each select="$vInterests/@topic">
<xsl:variable name="vTopic" select="."/>


<xsl:for-each select=
"$vSec[not(key('kSectionTypeAttrByName',
concat(generate-id(),'|', $vTopic)
)
=
'no'
)
]">
<xsl:text>1</xsl:text>
</xsl:for-each>

</xsl:for-each>
</xsl:variable>

<xsl:if test="string($vHasInterest)">
<section><xsl:apply-templates/></section>
</xsl:if>
</xsl:template>
</xsl:stylesheet>

应用于提供的 XML 文档时:

<manual>
<section>A: This is relevant for every type</section>
<section t600="no" t800="no">B: This is relevant only for the 737-400</section>
<section t800="no">C: This is relevant for 737-400 and 737-600</section>
<section t400="no">D: This is relevant for 737-600 and 737-800</section>
</manual>

产生想要的、正确的结果:

<manual>
<section>A: This is relevant for every type</section>
<section>D: This is relevant for 737-600 and 737-800</section>
</manual>

如果我们在转换中替换当前参数:

 <xsl:param name="pInterests">
<interest topic="t800"/>
</xsl:param>

:

 <xsl:param name="pInterests">
<interest topic="t400"/>
<interest topic="t600"/>
</xsl:param>

再次对同一个 XML 文档应用修改后的转换,我们也得到了想要的正确结果:

<manual>
<section>A: This is relevant for every type</section>
<section>B: This is relevant only for the 737-400</section>
<section>C: This is relevant for 737-400 and 737-600</section>
<section>D: This is relevant for 737-600 and 737-800</section>
</manual>

关于xml - 创建 XSL 样式表以根据输入参数省略不需要的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7779458/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com