簡體   English   中英

XSL-FO 和正確使用 xsl:template 和 xsl:for-each

[英]XSL-FO and correct use of xsl:template and xsl:for-each

在下面,您可以看到 XML 和我正在嘗試對其進行格式化的 XSL。 在我嘗試插入模板之前,一切都很好。 顯然我做錯了什么。 我正在嘗試使用模板for-each在表中為嵌套在<order_line_items>下的每個<order_line_item>添加一行,並且在四個單元格中的每一個中都應該有嵌套在<order_line_item>下的四個值你能幫忙嗎? 謝謝!

    <hash>
    <order_line_items type="array">
        <order_line_item>
                <document_currency_unit_price_after_discount_value amount="300.0" code="GBP">£300.00</document_currency_unit_price_after_discount_value>
                <document_currency_net_after_main_discount amount="300.0" code="GBP">£300.00</document_currency_net_after_main_discount>
                <description>Subscription</description>
                <unit_quantity type="decimal">1.0</unit_quantity>
        </order_line_item>
        <order_line_item>
            <document_currency_unit_price_after_discount_value amount="300.0" code="GBP">£200.00</document_currency_unit_price_after_discount_value>
                <document_currency_net_after_main_discount amount="300.0" code="GBP">£200.00</document_currency_net_after_main_discount>
                <description>Additional Services</description>
                <unit_quantity type="decimal">1.0</unit_quantity>
        </order_line_item>
        <order_line_item>
            <document_currency_unit_price_after_discount_value amount="300.0" code="GBP">£-50.00</document_currency_unit_price_after_discount_value>
                <document_currency_net_after_main_discount amount="300.0" code="GBP">£-50.00</document_currency_net_after_main_discount>
                <description>Discount</description>
                <unit_quantity type="decimal">1.0</unit_quantity>
        </order_line_item>
    </order_line_items>
</hash>

XSL

    <?xml version="1.0" encoding="UTF-8"?>
<xslt:stylesheet xmlns:date="http://exslt.org/dates-and-times" xmlns:str="http://exslt.org/strings" xmlns:xslt="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xf="http://www.ecrion.com/xf/1.0" xmlns:xc="http://www.ecrion.com/2008/xc" xmlns:xfd="http://www.ecrion.com/xfd/1.0" xmlns:svg="http://www.w3.org/2000/svg" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" extension-element-prefixes="date str">
  <xslt:output indent="yes" encoding="utf-8"/>
  
  <xsl:template match="/">
    <fo:root font-size="9pt">
      <fo:layout-master-set>
        <fo:simple-page-master master-name="A4" page-width="210mm" page-height="297mm">
           <fo:region-body region-name="xsl-region-body" padding-top="0px" padding-bottom="0px" padding-left="0px" padding-right="0px" margin-top="15mm" margin-bottom="15mm" margin-left="1.5cm" margin-right="1.5cm" border-style="none" border-width="0px" border-color="" background="" background-repeat="no-repeat" background-position-horizontal="0px" background-position-vertical="0px" extent="0px" column-gap="0px" column-count="1" reference-orientation="0"/>
           <fo:region-before region-name="xsl-region-before" display-align="after" extent="15mm" padding-top="0px" padding-bottom="0px" padding-left="0px" padding-right="0px" border-style="none" border-width="0px" border-color="" background="" background-repeat="no-repeat" background-position-horizontal="0px" background-position-vertical="0px" reference-orientation="0"/>
           <fo:region-after region-name="xsl-region-after" display-align="before" extent="15mm" padding-top="0px" padding-bottom="0px" padding-left="0px" padding-right="0px" border-style="none" border-width="0px" border-color="" background="" background-repeat="no-repeat" background-position-horizontal="0px" background-position-vertical="0px" reference-orientation="0"/>
           <fo:region-start region-name="xsl-region-start" extent="1.5cm" padding-top="0px" padding-bottom="0px" padding-left="0px" padding-right="0px" border-style="none" border-width="0px" border-color="" background="" background-repeat="no-repeat" background-position-horizontal="0px" background-position-vertical="0px" reference-orientation="0"/>
           <fo:region-end region-name="xsl-region-end" extent="1.5cm" padding-top="0px" padding-bottom="0px" padding-left="0px" padding-right="0px" border-style="none" border-width="0px" border-color="" background="" background-repeat="no-repeat" background-position-horizontal="0px" background-position-vertical="0px" reference-orientation="0"/>
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="A4">
        
        <fo:flow flow-name="xsl-region-body">

<fo:table margin-bottom="5mm">
                <fo:table-column column-width="25%"/>
                <fo:table-column column-width="25%"/>
                <fo:table-column column-width="25%"/>
                <fo:table-column column-width="25%"/>
                    <fo:table-body>
                        <fo:table-row>
                        <fo:table-cell>
                            <fo:block>
                                Product
                            </fo:block>
                        </fo:table-cell>
                        <fo:table-cell>
                            <fo:block>
                                Quantity
                            </fo:block>
                        </fo:table-cell>
                        <fo:table-cell>
                            <fo:block>
                                Unit Price
                            </fo:block>
                        </fo:table-cell>
                        <fo:table-cell>
                            <fo:block>
                                Net Amount
                            </fo:block>
                        </fo:table-cell>
                      </fo:table-row>
                    <xsl:template match="hash/order_line_items">
                      <fo:table-row>
                      <xsl:for-each select="order_line_item">
                        <fo:table-cell>
                            <fo:block>
                                <xsl:value-of select="description">
                            </fo:block>
                        </fo:table-cell>
                        <fo:table-cell>
                            <fo:block>
                                <xsl:value-of select="document_currency_unit_price_after_discount_value">
                            </fo:block>
                        </fo:table-cell>
                        <fo:table-cell>
                            <fo:block>
                                <xsl:value-of select="document_currency_unit_price_after_discount_value">
                            </fo:block>
                        </fo:table-cell>
                        <fo:table-cell>
                            <fo:block>
                                <xsl:value-of select="unit_quantity">
                            </fo:block>
                        </fo:table-cell>
                        </xsl:for-each>
                      </fo:table-row>
                    </xsl:template>
                </fo:table-body>
        </fo:table>
 </fo:flow>
      </fo:page-sequence>
    </fo:root>  
  </xsl:template>
 </xslt:stylesheet>

正如我在評論中所說,模板不能嵌套。 您需要使用帶有嵌套xsl:for-each指令的單個模板,或者使用帶有xsl:apply-templates指令的多個模板,將下一級節點傳遞給下一個模板。

在給定的示例中,您只需要一個模板,使用單個xsl:for-each指令為每個order_line_item創建一個表行。 由於您希望以與輸入中使用的順序不同的順序填充行中的單元格,因此最好單獨填充它們。

這是一個簡化的示例(創建 HTML 表):

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:template match="/hash">
    <table>
        <!-- header row -->
        <tr>
            <th>Product</th>
            <th>Quantity</th>
            <th>Unit Price</th>
            <th>Net Amount</th>
        </tr>
        <!-- data rows -->  
        <xsl:for-each select="order_line_items/order_line_item">
            <tr>
                <td>
                    <xsl:value-of select="description"/>
                </td>
                <td>
                    <xsl:value-of select="unit_quantity"/>
                </td>
                <td>
                    <xsl:value-of select="document_currency_unit_price_after_discount_value"/>
                </td>
                <td>
                    <xsl:value-of select="document_currency_net_after_main_discount"/>
                </td>
            </tr>
        </xsl:for-each>
    </table>
</xsl:template>

</xsl:stylesheet>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM