我正在使用oracle APEX进行Web应用程序。我在APEX中为PDF打印创建了样本报表查询和报表布局。
报告查询为“Select 'ab<b>cd</b>ef' content from dual;
”
报告布局(XSL-FO)
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink" version="2.0">
<xsl:template match="/">
<fo:root>
<fo:layout-master-set>
<fo:simple-page-master master-name="A4" page-width="216mm" page-height="279mm" margin-top="3cm" margin-bottom="1cm" margin-left="1cm" margin-right="1cm">
<fo:region-body margin="0.0cm" />
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="A4">
<fo:flow flow-name="xsl-region-body">
<fo:block margin-left="0.5cm" margin-right="0.0cm" margin-top="0.0cm" font-size="10pt" font-family="sans-serif" font-weight="normal" font-style="normal" color="#000000" text-align="center">
<xsl:apply-templates disable-output-escaping="yes" select="DOCUMENT/ROWSET/ROW/CONTENT" />
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
</xsl:stylesheet>
以下是APEX生成的XML数据
<?xml version="1.0" encoding="UTF-8"?>
<DOCUMENT>
<ROWSET>
<ROW>
<CONTENT>ab<b>cd</b>ef</CONTENT>
</ROW>
</ROWSET>
</DOCUMENT>
我将PDF输出设为“ab<b>cd</b>
”,这意味着使用标签获取输出,
但是我需要PDF输出为“ab cd ef”。
我尝试过disable-output-escaping =“yes”,但它无效。
如果需要进一步的详细信息,请与我们联系。
谢谢, 希瓦