连接 XSL 中的节点并将值放入 HTML“标题”中属性

发布于 2024-12-16 14:11:00 字数 498 浏览 0 评论 0原文

我的 XML 数据格式如下:

<Parent>
    <Child>Value1</Child>
    <Child>Value2</Child>
    <Child>Value3</Child>
    .
    .
    .
</Parent>

我必须将封闭标记的 HTML title 属性设置为连接值,类似于:

<xsl:attribute name="title">Value1,Value2,Value3,.,.,.</xsl:attribute>

我检查了之前在 SO 上提出的问题,但大多数解决方案是多行,(并且是 XSL 新手)我认为我不能在 标记中包含多行代码。这件事该怎么办呢?

I have XML data in a form like:

<Parent>
    <Child>Value1</Child>
    <Child>Value2</Child>
    <Child>Value3</Child>
    .
    .
    .
</Parent>

I have to set the HTML title attribute of the enclosing tag to the concatenated values, something like:

<xsl:attribute name="title">Value1,Value2,Value3,.,.,.</xsl:attribute>

I checked questions asked previously on SO, but most of the solutions were multiline, (and being new to XSL) I think that it i can't include the multiline code within my <xsl:attribute></xsl:attribute> tags. How to go about this thing?

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

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

发布评论

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

评论(4

乞讨 2024-12-23 14:11:00

XSLT 2.0 解决方案

<xsl:stylesheet version="2.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="Parent">
     <Parent title="{string-join(Child, ', ')}"/>
 </xsl:template>
</xsl:stylesheet>

当此转换应用于提供的 XML 文档时

<Parent>
    <Child>Value1</Child>
    <Child>Value2</Child>
    <Child>Value3</Child>
</Parent>

生成所需的正确结果

<Parent title="Value1, Value2, Value3"/>

或者,如果人们想要覆盖身份规则以获得更大的灵活性

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

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

 <xsl:template match="Child[1]">
  <xsl:attribute name="title" select="string-join(../Child, ', ')"/>
 </xsl:template>

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

当此转换应用于同一个 XML 文档(上面)时,会再次生成相同的所需正确结果

<Parent title="Value1, Value2, Value3"/>

XSLT 2.0 solution:

<xsl:stylesheet version="2.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="Parent">
     <Parent title="{string-join(Child, ', ')}"/>
 </xsl:template>
</xsl:stylesheet>

When this transformation is applied on the provided XML document:

<Parent>
    <Child>Value1</Child>
    <Child>Value2</Child>
    <Child>Value3</Child>
</Parent>

the wanted, correct result is produced:

<Parent title="Value1, Value2, Value3"/>

Or, if one wants to override the identity rule for greater flexibility:

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

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

 <xsl:template match="Child[1]">
  <xsl:attribute name="title" select="string-join(../Child, ', ')"/>
 </xsl:template>

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

When this transformation is applied on the same XML document (above), the same wanted, correct result is produced again:

<Parent title="Value1, Value2, Value3"/>
铜锣湾横着走 2024-12-23 14:11:00
<xsl:template match="Parent">
  <xsl:attribute name="title">
   <xsl:for-each select="Child">
     <xsl:if test="position() != 1">, </xsl:if>
     <xsl:value-of select="."/>
   </xsl:for-each>
  </xsl:attribute>
</xsl:template>
<xsl:template match="Parent">
  <xsl:attribute name="title">
   <xsl:for-each select="Child">
     <xsl:if test="position() != 1">, </xsl:if>
     <xsl:value-of select="."/>
   </xsl:for-each>
  </xsl:attribute>
</xsl:template>
红颜悴 2024-12-23 14:11:00
<xsl:template match="Parent">
  <xsl:attribute name="title">
   <xsl:for-each select="Child">
     <xsl:value-of select="."/>
     <xsl:if test="not(position()=last())">, </xsl:if>
   </xsl:for-each>
  </xsl:attribute>
</xsl:template>
<xsl:template match="Parent">
  <xsl:attribute name="title">
   <xsl:for-each select="Child">
     <xsl:value-of select="."/>
     <xsl:if test="not(position()=last())">, </xsl:if>
   </xsl:for-each>
  </xsl:attribute>
</xsl:template>
各自安好 2024-12-23 14:11:00

我对xsl了解不多,但是xsl中有一个xpath函数string-join可以使用,这样可以减少行数。我通常在 Orbeon Xforms 中使用此功能。

string-join(/Parent/Child, ',')

参考:http://www.w3schools.com/xpath/xpath_functions.asp

I dont know much about xsl, but there is a xpath function string-join which can be used may be in the xsl so that number of lines can be reduced. I usually use this function in Orbeon Xforms.

string-join(/Parent/Child, ',')

Reference: http://www.w3schools.com/xpath/xpath_functions.asp

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