我有简单的 xsql
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="zad1.xsl" ?>
<page xmlns:xsql="urn:oracle-xsql" connection="java:comp/env/jdbc/mondialDS">
<xsql:query max-rows="-1" null-indicator="no" tag-case="lower" rowset-element="continents">
select name as continent
from mondial_user.Continent
order by 1
</xsql:query>
</page>
这给了我一份包含“澳大利亚/大洋洲”的大陆列表
我在上面的 xsql 上使用 XSL:
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- Root template -->
<res>
<xsl:template match="/continents">
<xsl:for-each select="row">
<re>
<xsl:value-of select="continent"/>
</re>
</xsl:for-each>
</xsl:template>
</res>
</xsl:stylesheet>
Firefox 在“格式错误的 xml 文档”上抛出错误:
非洲美洲亚洲澳大利亚/大洋洲欧洲
----------------------------------^
帮助表示赞赏。