【问题标题】:XSLT Adding the price of books after an IF StatementXSLT 在 IF 语句后添加图书价格
【发布时间】:2016-05-07 09:46:55
【问题描述】:

不确定如何执行此操作,因为“sum()”函数正在添加 XML 页面中的所有值,而不是“if”语句选择的值。

这是 XML:

<book>
    <title type="non-fiction">Harry Potter and the Philosophers Stone</title>
    <author>J.K Rowling</author>
    <publisher>Bloomsbury</publisher>
    <year>1997</year>
    <price>12.99</price>
</book>

<book>
    <title type="fiction">The Lord of the Rings</title>
    <author>J. R. R. Tolkien</author>
    <publisher>George Allen and Unwin</publisher>
    <year>1954</year>
    <price>39.99</price>
</book>

<book>
    <title type="non-fiction">The Right Stuff</title>
    <author>Tom Wolfe</author>
    <publisher>Farra, Staus and Giroux</publisher>
    <year>1979</year>
    <price>29.99</price>
</book>

这是 XSLT:

  <xsl:output 
method="html" 
indent="yes" 
version="4.0"
doctype-public="-//W3C//DTD HTML 4.01//EN"
doctype-system="http://www.w3.org/TR/html4/strict.dtd"/>

<xsl:template match="/library">
<html>
<body>
    <xsl:for-each select="book">
        <xsl:if test="title[@type='non-fiction']">
            <xsl:if test="price&lt;30" >
                <p class="title"> <xsl:value-of select="title"/></p>
                <p class="author"> <xsl:value-of select="author"/> </p>
                <p class="price"> <xsl:value-of select="price"/> </p>   
            </xsl:if>
        </xsl:if>
    </xsl:for-each>     
</body>

我想将符合所有条件的书籍总数相加。我假设 sum 函数会这样做,但它会添加所有书籍,无论它是否通过了 'if' 语句。

【问题讨论】:

  • 不能用count()函数代替sum()函数吗?
  • 我认为该计数是将列表中的项目数量相加。我会做一些研究。

标签: javascript html xml xslt foreach


【解决方案1】:

一种可能性是定义

  • 一个节点集变量,其中包含您要打印的所有书籍,
  • 然后循环遍历该节点集以打印书籍,
  • 最后使用 sum 函数计算总价。

例如

<body>
    <xsl:variable name="books" select="book[title[@type='non-fiction']][price&lt;30]" />
    <xsl:for-each select="$books">
        <p class="title"> <xsl:value-of select="title"/></p>
        <p class="author"> <xsl:value-of select="author"/> </p>
        <p class="price"> <xsl:value-of select="price"/> </p>   
    </xsl:for-each>     
    <p class="total-price"> <xsl:value-of select="sum($books/price)"/> </p>   
</body>

【讨论】:

  • 非常感谢您的回答!我发现这个更方便,因为你解释了你的推理。
【解决方案2】:

你可以试试这个:

  <xsl:template match="/library" >
  <html>
  <body>
      <xsl:variable name="fiction_lt30" 
          select="book[title[@type='non-fiction'] and price &lt; 30] " />
      <xsl:for-each select="$fiction_lt30">
        <p class="title"> <xsl:value-of select="title"/></p>
        <p class="author"> <xsl:value-of select="author"/> </p>
        <p class="price"> <xsl:value-of select="price"/> </p>   
      </xsl:for-each>     
        <p>total: <xsl:value-of select="sum($fiction_lt30/price)" /></p>
    </body>
</html>
</xsl:template>

【讨论】:

    【解决方案3】:

    这是一个完整而简短的解决方案:

    <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="/*">
      <xsl:variable name="vBooks" 
                    select="book[title[@type='non-fiction'] and not(price >= 30)]"/>
        <html>
         <body>
           <xsl:apply-templates select="$vBooks"/>
           <p><strong>Total Cost:</strong><span><xsl:value-of 
                                                     select="sum($vBooks/price)"/></span></p>
         </body>
        </html>
      </xsl:template>
    
      <xsl:template match="book/*[self::title or self::author or self::price]">
       <p class="{name()}"> <xsl:value-of select="."/></p>
      </xsl:template>
    </xsl:stylesheet>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-07-15
      • 2022-10-20
      • 2019-05-01
      相关资源
      最近更新 更多