gpt4 book ai didi

链接 XSL 时 XML 显示空白页

转载 作者:数据小太阳 更新时间:2023-10-29 02:29:56 26 4
gpt4 key购买 nike

XML 文件:

<?xml version="1.0"  encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="biblio.xsl"?>

<bibliography>
<entry type="article">
<title>A History of MOOCs, Open Online Courses</title>
<author>Jane Karr</author>
<year>2014</year>
</entry>
<entry type="article">
<title>Apple Co-Founder Creates Electronic ID Tags</title>
<author>John Markoff</author>
<year>2003</year>
</entry>
</bibliography>

XSL 文件:

<?xml version="1.0"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">

<html>
<body>
<h2>Bibliography Entries</h2>
<table border="1">
<xsl:for-each select="bibliography/entry">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="author"/></td>
<td><xsl:value-of select="year"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>

</xsl:template>
</xsl:stylesheet>

如果我不将 XSLT 文件链接到 XML 文件,我的 XML 文件将在我的浏览器页面中输出树结构,但如果我链接 XSLT 文件,它将显示一个空白页面。

我正在使用 Chrome,如果它有助于了解。

谢谢。

最佳答案

我假设您正在从文件系统加载 XML 文档,在这种情况下,出于安全原因,Chrome 不会应用链接的 XSLT,除非您以较低的安全设置启动它。使用 F12 打开浏览器控制台并检查 Chrome 是否显示一条消息,解释未应用 Xslt 的原因。

关于链接 XSL 时 XML 显示空白页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26662203/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com