我做错了什么?它显示为空白页面。我不知道很多xslt所以我现在只是测试它。如果我不能让它出现,那么我无法真正测试它是如何工作的。
我的XML
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="q3.xsl"?>
<expenseReport>
<companyInfo>
<name>John Doe</name>
<email>JDoe@company.com</email>
<empNum>1</empNum>
<companyCode>10010011</companyCode>
</companyInfo>
</expenseReport>
XSLT
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h1>Test</h1>
<xsl:value-of select="expenseReport/companyInfo/name"/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
我甚至无法让<h1>
显示出来,发生了什么?
答案 0 :(得分:1)
如果您尝试查看Chrome中的本地文件,请使用--allow-file-access-from-files
。它们对本地文件访问非常严格,因此在部署站点时不要依赖此选项。只用它来开发!我只是用版本14.0.385.202检查了它并且它有效。
除此之外你的.xslt就好了!