XSLT换行问题

发布于 2024-10-30 21:39:54 字数 1189 浏览 1 评论 0 原文

我正在尝试使用 xslt 根据 xml 文件中的字段生成 html 输出。我根据 xml 中的祖父母-父母-孩子-孙子关系命名它们

例如:

<root>
  <node1>
      <node2>
         <node3>Data</node3>
      </node2>
  </node1>

我需要的是创建一个名为 node1__node2__node3 的文本框 到目前为止我所做的是这个

<input type="text" name="node1__
        node2__
        node3__"

,但我想要的是:

<input type="text" name="node1__node2__node3__"/>

所以它是没用的。我的 xslt 产生这个无用的输出是:

<xsl:template name="chooseNameID">
    <xsl:param name="currentNode"/><!-- in this case currentNode is node3 -->
    <xsl:variable name="fieldNames">
        <xsl:for-each select="$currentNode/ancestor::*">
                <xsl:value-of select="name(.)"/>__
        </xsl:for-each>
    </xsl:variable>

    <xsl:attribute name="name">
        <xsl:value-of select="$fieldNames"/>                            
    </xsl:attribute>

</xsl:template>

我猜问题出在 但我找不到任何解决方案。

谢谢

I am trying to produce html output according to the fields in xml file with xslt. And I name them according to grandparent-parent-child-grandchild relation in xml

For instance:

<root>
  <node1>
      <node2>
         <node3>Data</node3>
      </node2>
  </node1>

What i need is creating let's say textbox, with name node1__node2__node3
What i did so far is this

<input type="text" name="node1__
        node2__
        node3__"

But what i want to is:

<input type="text" name="node1__node2__node3__"/>

So it is useless. My xslt to produce this useless output is:

<xsl:template name="chooseNameID">
    <xsl:param name="currentNode"/><!-- in this case currentNode is node3 -->
    <xsl:variable name="fieldNames">
        <xsl:for-each select="$currentNode/ancestor::*">
                <xsl:value-of select="name(.)"/>__
        </xsl:for-each>
    </xsl:variable>

    <xsl:attribute name="name">
        <xsl:value-of select="$fieldNames"/>                            
    </xsl:attribute>

</xsl:template>

I guess the problem is in <xsl:value-of but i cannot find any solution to that.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

还如梦归 2024-11-06 21:39:54

此转换

<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:template match="node3">
    <xsl:variable name="vName">
     <xsl:for-each select=
      "ancestor-or-self::*[not(position()=last())]">
        <xsl:value-of select="name()"/>
        <xsl:if test="not(position()=last())">__</xsl:if>
     </xsl:for-each>
    </xsl:variable>

    <input type="text" name="{$vName}"/>
 </xsl:template>
</xsl:stylesheet>

应用于提供的 XML 文档时

<root>
    <node1>
        <node2>
            <node3>Data</node3>
        </node2>
    </node1>
</root>

产生所需的正确结果:

<input type="text" name="node1__node2__node3"/>

请注意:使用 AVT(属性值模板)在短短一行内生成所需的输出。

This transformation:

<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:template match="node3">
    <xsl:variable name="vName">
     <xsl:for-each select=
      "ancestor-or-self::*[not(position()=last())]">
        <xsl:value-of select="name()"/>
        <xsl:if test="not(position()=last())">__</xsl:if>
     </xsl:for-each>
    </xsl:variable>

    <input type="text" name="{$vName}"/>
 </xsl:template>
</xsl:stylesheet>

when applied on the provided XML document:

<root>
    <node1>
        <node2>
            <node3>Data</node3>
        </node2>
    </node1>
</root>

produces the wanted, correct result:

<input type="text" name="node1__node2__node3"/>

Do note: The use of AVT (Attribute Value Template) to generate the required output in one short line.

西瑶 2024-11-06 21:39:54

不需要的空格(包括换行符)是循环中文本节点文字的一部分。

在样式表文档中,除了 xsl:text 内之外,纯空白文本节点都会被忽略。然而,与其他文本相邻的空白是该文本的一部分。

样式表中的文字空白可以使用xsl:text 进行管理。

    <!-- change this -->
    <xsl:for-each select="$currentNode/ancestor::*">
        <xsl:value-of select="name(.)"/>__
    </xsl:for-each>

    <!-- to this -->
    <xsl:for-each select="$currentNode/ancestor::*">
        <xsl:value-of select="name(.)"/>__<xsl:text/>
    </xsl:for-each>

    <!-- or this -->
    <xsl:for-each select="$currentNode/ancestor::*">
        <xsl:value-of select="name(.)"/>
        <xsl:text>__</xsl:text>
    </xsl:for-each>

The unwanted whitespace, including newlines, is part of a text node literal in the loop.

In the stylesheet document, whitespace-only text nodes are ignored except within xsl:text. However whitespace adjacent to other text is part of that text.

Literal whitespace in the stylesheet can be managed with xsl:text.

    <!-- change this -->
    <xsl:for-each select="$currentNode/ancestor::*">
        <xsl:value-of select="name(.)"/>__
    </xsl:for-each>

    <!-- to this -->
    <xsl:for-each select="$currentNode/ancestor::*">
        <xsl:value-of select="name(.)"/>__<xsl:text/>
    </xsl:for-each>

    <!-- or this -->
    <xsl:for-each select="$currentNode/ancestor::*">
        <xsl:value-of select="name(.)"/>
        <xsl:text>__</xsl:text>
    </xsl:for-each>
梦里梦着梦中梦 2024-11-06 21:39:54

像往常一样,提出问题后你会找到解决方案。

使用此 行更改 为我工作。

As normal, after asking a question you find a solution.

Changing <xsl:value-of select="$fieldNames"/> line with this <xsl:value-of select="normalize-space($fieldNames)" worked for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文