在运行时评估 XPath 表达式还是使用不同的方法?

发布于 2024-10-26 21:37:34 字数 1171 浏览 0 评论 0原文

<grid>
<col>Links</col>
<col>Rechts</col>
<row>
    <Links>l1</Links>
    <Rechts>r1</Rechts>
</row>
<row>
    <Links>l2</Links>
    <Rechts>r2</Rechts>
</row>
</grid>

大家好,鉴于上面的 XML 数据,我想创建一个类似以下的表:

Links|Rechts
l1|r1
l2|r2

我的 XSL 模板是:

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:dyn="http://exslt.org/dynamic"
extension-element-prefixes="dyn">

    <xsl:template match="grid">

        <xsl:for-each select="//row">
            <xsl:variable name="currentrow" select="."/>
            <xsl:for-each select="//col">
                <xsl:variable name="colname" select="text()"/>
                <xsl:value-of select="dyn:evaluate('$currentrow/$colname/text()')"></xsl:value-of>
            </xsl:for-each>
        </xsl:for-each>
    </xsl:template>

</xsl:stylesheet>

我得到的唯一输出是“”。

我不知道如何解决我的问题。我不知道使用 dyn:evaluate 是否是正确的方法。

感谢您的帮助!

<grid>
<col>Links</col>
<col>Rechts</col>
<row>
    <Links>l1</Links>
    <Rechts>r1</Rechts>
</row>
<row>
    <Links>l2</Links>
    <Rechts>r2</Rechts>
</row>
</grid>

Hey folks, given the XML data above I want to create a table like:

Links|Rechts
l1|r1
l2|r2

My XSL Template is:

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:dyn="http://exslt.org/dynamic"
extension-element-prefixes="dyn">

    <xsl:template match="grid">

        <xsl:for-each select="//row">
            <xsl:variable name="currentrow" select="."/>
            <xsl:for-each select="//col">
                <xsl:variable name="colname" select="text()"/>
                <xsl:value-of select="dyn:evaluate('$currentrow/$colname/text()')"></xsl:value-of>
            </xsl:for-each>
        </xsl:for-each>
    </xsl:template>

</xsl:stylesheet>

The only output I get is "".

I Have no clue how to solve my issue. I dont event know, whether its the right way to use dyn:evaluate.

Thanks for help!

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

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

发布评论

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

评论(4

满天都是小星星 2024-11-02 21:37:34

将您的 XSLT grid 部分替换为

<xsl:template match="grid">
    <xsl:for-each select="row">
            <xsl:value-of select="Links"/>|
            <xsl:value-of select="Rechts"/><br>
    </xsl:for-each>
</xsl:template>

我已使用
作为换行符,如果这不是 HTML,请使用相关符号。

Replace your XSLT grid part with

<xsl:template match="grid">
    <xsl:for-each select="row">
            <xsl:value-of select="Links"/>|
            <xsl:value-of select="Rechts"/><br>
    </xsl:for-each>
</xsl:template>

I have used <br> for a newline, if this is not HTML, use relevant symbol(s).

苏别ゝ 2024-11-02 21:37:34
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>
  <xsl:strip-space elements="*" />

  <xsl:template match="grid">
    <xsl:apply-templates select="col" />
    <xsl:apply-templates select="row" />
  </xsl:template>

  <xsl:template match="col|row/*">
    <xsl:value-of select="." />
    <xsl:choose>
      <xsl:when test="position() = last()"><xsl:value-of select="'
'" /></xsl:when>
      <xsl:otherwise>|</xsl:otherwise>
    </xsl:choose>
  </xsl:template>
</xsl:stylesheet>

请注意,

  • 为此不需要 XPath 的动态评估。
  • 删除纯空白文本节点,否则这些文本节点将出现在输出中
  • 相同的模板可以匹配不同的节点(此处通过联合运算符 |
  • 这个解决方案可以处理任意数量的列,
  • 数据字段的命名方式并不重要,因为我使用了 row/*

编辑一个更详细的版本,不假设每列都会在那里。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>
  <xsl:strip-space elements="*" />

  <xsl:template match="grid">
    <xsl:apply-templates select="col" />
    <xsl:apply-templates select="row" />
  </xsl:template>

  <xsl:template match="col">
    <xsl:value-of select="." />
    <xsl:call-template name="separator" />
  </xsl:template>

  <xsl:template match="row">
    <xsl:variable name="this" select="." />
    <xsl:for-each select="/grid/col">
      <xsl:value-of select="$this/*[name() = current()]" />
      <xsl:call-template name="separator" />
    </xsl:for-each>
  </xsl:template>

  <xsl:template name="separator">
    <xsl:choose>
      <xsl:when test="position() = last()"><xsl:value-of select="'
'" /></xsl:when>
      <xsl:otherwise>|</xsl:otherwise>
    </xsl:choose>
  </xsl:template>
</xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>
  <xsl:strip-space elements="*" />

  <xsl:template match="grid">
    <xsl:apply-templates select="col" />
    <xsl:apply-templates select="row" />
  </xsl:template>

  <xsl:template match="col|row/*">
    <xsl:value-of select="." />
    <xsl:choose>
      <xsl:when test="position() = last()"><xsl:value-of select="'
'" /></xsl:when>
      <xsl:otherwise>|</xsl:otherwise>
    </xsl:choose>
  </xsl:template>
</xsl:stylesheet>

Notes

  • no dynamic evaluation of XPath is necessary for this.
  • <xsl:strip-space elements="*"> removes whitespace-only text nodes that would otherwise appear in the output
  • the same template can match different nodes (here via the union operator |)
  • this solution can cope with any number of columns
  • it does not matter how the data fields are named since I used row/*

EDIT A more elaborate version that does not assume every column would be there.

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>
  <xsl:strip-space elements="*" />

  <xsl:template match="grid">
    <xsl:apply-templates select="col" />
    <xsl:apply-templates select="row" />
  </xsl:template>

  <xsl:template match="col">
    <xsl:value-of select="." />
    <xsl:call-template name="separator" />
  </xsl:template>

  <xsl:template match="row">
    <xsl:variable name="this" select="." />
    <xsl:for-each select="/grid/col">
      <xsl:value-of select="$this/*[name() = current()]" />
      <xsl:call-template name="separator" />
    </xsl:for-each>
  </xsl:template>

  <xsl:template name="separator">
    <xsl:choose>
      <xsl:when test="position() = last()"><xsl:value-of select="'
'" /></xsl:when>
      <xsl:otherwise>|</xsl:otherwise>
    </xsl:choose>
  </xsl:template>
</xsl:stylesheet>
我只土不豪 2024-11-02 21:37:34

此样式表:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:variable name="vColNames" select="/grid/col"/>
    <xsl:template match="grid">
        <table>
            <xsl:apply-templates/>
        </table>
    </xsl:template>
    <xsl:template match="col"/>
    <xsl:template match="col[1]">
        <tr>
            <xsl:apply-templates select="../col" mode="wrap"/>
        </tr>
    </xsl:template>
    <xsl:template match="col" mode="wrap">
        <th>
            <xsl:apply-templates/>
        </th>
    </xsl:template>
    <xsl:template match="row">
        <xsl:variable name="vCurrent" select="."/>
        <tr>
            <xsl:for-each select="$vColNames">
                <xsl:apply-templates select="$vCurrent/*[name()=current()]"/>
            </xsl:for-each>
        </tr>
    </xsl:template>
    <xsl:template match="row/*">
        <td>
            <xsl:apply-templates/>
        </td>
    </xsl:template>
</xsl:stylesheet>

输出:

<table>
    <tr>
        <th>Links</th>
        <th>Rechts</th>
    </tr>
    <tr>
        <td>l1</td>
        <td>r1</td>
    </tr>
    <tr>
        <td>l2</td>
        <td>r2</td>
    </tr>
</table>

注意:迭代上下文中的列名称。

This stylesheet:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:variable name="vColNames" select="/grid/col"/>
    <xsl:template match="grid">
        <table>
            <xsl:apply-templates/>
        </table>
    </xsl:template>
    <xsl:template match="col"/>
    <xsl:template match="col[1]">
        <tr>
            <xsl:apply-templates select="../col" mode="wrap"/>
        </tr>
    </xsl:template>
    <xsl:template match="col" mode="wrap">
        <th>
            <xsl:apply-templates/>
        </th>
    </xsl:template>
    <xsl:template match="row">
        <xsl:variable name="vCurrent" select="."/>
        <tr>
            <xsl:for-each select="$vColNames">
                <xsl:apply-templates select="$vCurrent/*[name()=current()]"/>
            </xsl:for-each>
        </tr>
    </xsl:template>
    <xsl:template match="row/*">
        <td>
            <xsl:apply-templates/>
        </td>
    </xsl:template>
</xsl:stylesheet>

Output:

<table>
    <tr>
        <th>Links</th>
        <th>Rechts</th>
    </tr>
    <tr>
        <td>l1</td>
        <td>r1</td>
    </tr>
    <tr>
        <td>l2</td>
        <td>r2</td>
    </tr>
</table>

Note: Iterate over the columns' names in row context.

青柠芒果 2024-11-02 21:37:34

此转换(模板数量最少 - 仅 3 个,比所有其他当前解决方案都短,并且能够适应元素顺序或缺少 col 元素):

<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="col[not(position()=last())]">
   <xsl:value-of select="concat(.,'|')"/>
 </xsl:template>

 <xsl:template match="row">
  <xsl:text>
</xsl:text>
  <xsl:apply-templates select="/*/col"
       mode="buildCell">
   <xsl:with-param name="pRow" select="."/>
  </xsl:apply-templates>
 </xsl:template>

 <xsl:template match="col" mode="buildCell">
   <xsl:param name="pRow"/>

   <xsl:value-of select=
    "concat($pRow/*[name()=current()],
            substring('|', (position()=last())+1)
           )
    "/>
 </xsl:template>
</xsl:stylesheet>

当应用于提供的 XML 文档时:

<grid>
    <col>Links</col>
    <col>Rechts</col>
    <row>
        <Links>l1</Links>
        <Rechts>r1</Rechts>
    </row>
    <row>
        <Links>l2</Links>
        <Rechts>r2</Rechts>
    </row>
</grid>

产生所需的正确结果:

Links|Rechts
l1|r1
l2|r2

This transformation (having the smallest number of templates -- just 3, and shorter than all other current solutions, and resilient to element order or missing col elements):

<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="col[not(position()=last())]">
   <xsl:value-of select="concat(.,'|')"/>
 </xsl:template>

 <xsl:template match="row">
  <xsl:text>
</xsl:text>
  <xsl:apply-templates select="/*/col"
       mode="buildCell">
   <xsl:with-param name="pRow" select="."/>
  </xsl:apply-templates>
 </xsl:template>

 <xsl:template match="col" mode="buildCell">
   <xsl:param name="pRow"/>

   <xsl:value-of select=
    "concat($pRow/*[name()=current()],
            substring('|', (position()=last())+1)
           )
    "/>
 </xsl:template>
</xsl:stylesheet>

when applied on the provided XML document:

<grid>
    <col>Links</col>
    <col>Rechts</col>
    <row>
        <Links>l1</Links>
        <Rechts>r1</Rechts>
    </row>
    <row>
        <Links>l2</Links>
        <Rechts>r2</Rechts>
    </row>
</grid>

produces the wanted, correct result:

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