我正在编写一个 Chrome 扩展程序,它应该动态地将 XSLT 转换应用于某些 XML 文档。仅出于测试目的,我使用以下 XML 和 XSL 文件:
XML:
<?xml version="1.0" encoding="utf-8" ?>
<WebServiceMessage>
<status>timeout</status>
<message>Nameserver%2520not%2520registered.</message>
<stepName>Finish</stepName>
<stepNumber>11</stepNumber>
<maxStepNumber>11</maxStepNumber>
<percent>100</percent>
<session>2fc0f139b88a800151e5f21b9d747919</session>
</WebServiceMessage>
XSL:
<?xml version="1.0" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html><head></head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="*">
<xsl:for-each select="*">
<p><b><xsl:value-of select ="name(.)"/></b>:
<span><xsl:attribute name="id"><xsl:value-of select ="name(.)"/></xsl:attribute><xsl:value-of select="."/></span></p>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
如果转换在测试 XML 文件本身内部链接,则转换正常工作,即通过:
<?xml-stylesheet type="text/xsl" href="message.xsl"?>
扩展应该将相同的 xsl 链接注入 XML 文件。
清单.json:
{
"permissions": ["tabs", "<all_urls>"],
"content_scripts":
[
{
"matches": ["<all_urls>"],
"js" : ["contentscript.js"]
}
],
"web_accessible_resources":
[
"message.xsl"
],
"manifest_version": 2
}
内容脚本.js:
(function()
{
if(document.xmlVersion != null)
{
var e = document.createProcessingInstruction(
"xml-stylesheet",
"type='text/xsl' href='" + chrome.extension.getURL("message.xsl") + "'");
document.insertBefore(e, document.firstChild);
}
})();
问题
Chrome 将以下错误输出到控制台:
chrome-extension://ladfinoepkgipbeooknnklpakoknohjh/message.xsl
从带有 URL 的框架加载 URL 的尝试不安全http://localhost/out.xml
。域、协议和端口必须匹配。
如何解决这个问题?我在网上看到了一些与类似错误相关的报告,这似乎是 Chrome 中的一个错误。
我也将 xsl 文件放在网络服务器上,并将样式表链接更改为网络服务器。还是一样的错误:
http://localhost/message.xsl
从带有 URL 的框架加载 URL 的尝试不安全http://localhost/out.xml
。域、协议和端口必须匹配。
显然域、协议和端口确实匹配。