我正在使用XSL-FO和XML生成PDF。在文本框中,用户可以输入“1”之类的数据,然后按ENTER,然后按“2”,ENTER,“3”等。但是在XML中,因此在PDF中,输出为“1234567”。我怎样才能保留换行符?我已经尝试了white-space-collapse
,linefeed-treatment
和white-space-treatment
,但这没有帮助。
我的XSL看起来像:
<xsl:template match="AddCmt">
<fo:block keep-together="always"> Additional Comments
<fo:block-container border-style="solid" height="20mm" width="170mm" space-after="5mm">
<fo:block>
<xsl:attribute name="id">
<xsl:value-of select="../CMT_ID"/>
</xsl:attribute>
<xsl:value-of select="../ANS_CMT"/>
</fo:block>
</fo:block-container>
</fo:block>
</xsl:template>
当我输入以下内容时:
hello
medhavi
saraswat
这是我得到的XML:
<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type='text/xsl' href='e:\tmm-09.3\src\pmod\WorkOrder.xsl'?>
<Root>
<WorkOrders>
<Detail>Id="ANS_436_FLD_1" Label="qq">qq</Detail>
<Ans Checked="0" Id="ANS_436_FLD_2" Label="ww">ww</Ans>
<ID>ANS_436_FLD</ID>
<ANS_FLD>0|0</ANS_FLD>
<CMT_ID>ANS_436_CMT</CMT_ID>
<ANS_CMT>hello medhavi saraswat</ANS_CMT>
<Warning>
<Line>warning 11</Line>
<Line>22</Line>
<Line>33</Line>
<Line>44</Line>
<Line></Line>
<Line>66</Line>
<Line>77</Line>
<Line></Line>
</Warning>
答案 0 :(得分:6)
它应该与以下xml一起使用(您应该添加所有属性):
<xsl:template match="AddCmt">
<fo:block keep-together="always"> Additional Comments
<fo:block-container border-style="solid" height="20mm" width="170mm" space-after="5mm">
<fo:block wrap-option="wrap" linefeed-treatment="preserve" white-space-collapse="false" white-space-treatment="preserve">
<xsl:attribute name="id">
<xsl:value-of select="../CMT_ID"/>
</xsl:attribute>
<xsl:value-of select="../ANS_CMT"/>
</fo:block>
</fo:block-container>
</fo:block>
</xsl:template>
但正如我在评论中提到的,如果你的XML已经没有换行符,那么你的PDF就没有办法了。您在问题中提到XML中没有换行符,因此PDF中没有换行符。
尝试查看XML中没有换行符的原因。如果您可以提供更多信息(一段XML,用于构建XML的代码,......),请编辑您的答案并添加信息。