gpt4 book ai didi

html - 在 XSLT 中标记或修改子节点

转载 作者:行者123 更新时间:2023-11-28 00:05:40 24 4
gpt4 key购买 nike

我是 XSL 的新手,很明显,一些非常基本的东西让我很困惑。假设我有一个如下所示的 XML 文档:

<?xml version="1.0" encoding="UTF-8"?>
<essay><author>John Stamos</author>
<text>
<p>In his song "Turn! Turn! Turn!," Bob Dylan quotes the Bible:
<quotation>"To every thing there is a season, and a time to every purpose under the
heaven,"</quotation> which is a well-known quotation from Ecclesiastes.
</p>
</text>
</essay>

出于我目前的目的,我想标记 <p> 中的文本元素以及 <quotation>元素并仅打印这些。 IE,我要输出

    <span id="paragraph">In his song "Turn! Turn! Turn!," Bob Dylan quotes the Bible:
<span id="quotation">"To every thing there is a season, and a time to every purpose under the
heaven,"</span> which is a well-known quotation from Ecclesiastes.</span>

但是,当我使用如下样式表时,我遇到了麻烦:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:tei="http://www.tei-
c.org/ns/1.0"
version="1.0">

<xsl:template match="/">
<xsl:apply-templates select="//text"/>
</xsl:template>

<xsl:template match="p">
<span id="paragraph"><xsl:value-of select="//p"/></span>
</xsl:template>

<xsl:template match="quotation">
<span id="quotation"><xsl:value-of select="//quotation"/></span>
</xsl:template>

</xsl:stylesheet>

永远不会调用报价模板; p,它的 parent ,显然优先。我该怎么做?

最佳答案

quotation 模板从未被调用的原因是因为您没有告诉 XSLT 在匹配 p 的模板中继续处理。您所做的只是输出一个元素,因此 XSLT 处理器将不会继续对 p 元素的任何后代进行任何模板匹配。您需要做的是将此行添加到模板中(在 span 元素内),以便 XSLT 可以继续并匹配 quotation 元素。

<xsl:apply-templates />

其实你这一行也有问题

<xsl:value-of select="//p"/>

这实际上将返回文档中第一个 p 元素下的所有文本,不一定是您所在的那个。您可以将其更改为:

 <xsl:value-of select="."/>

但这将包括嵌套 quotation 元素中的任何文本。但是,在这种情况下,您实际上根本不需要这里的 xsl:value-of,因为 XSLT 具有内置模板的概念,它将输出它找到的任何文本节点的文本,因此只需执行 xsl:apply-templates 即可处理此问题。

试试这个 XSLT

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="/">
<xsl:apply-templates select="//text"/>
</xsl:template>

<xsl:template match="p">
<span id="paragraph"><xsl:apply-templates /></span>
</xsl:template>

<xsl:template match="quotation">
<span id="quotation"><xsl:apply-templates /></span>
</xsl:template>

</xsl:stylesheet>

关于html - 在 XSLT 中标记或修改子节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18624331/

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