"Not allowed to load local resource" 是什么意思?

What does "Not allowed to load local resource" mean?

我正在尝试查看与 XSLT 关联的 XML 文件:

<?xml-stylesheet type="text/xsl" href="upit.xsl"?>

当我查看它时,它显示:

This XML file does not appear to have any style information associated with it. The document tree is shown below.

在控制台上

Not allowed to load local resource

这意味着您违反了您试图用来访问本地资源的系统的安全协议,在本例中,是为了应用您的样式表。总体思路是保护浏览器用户免受恶意访问其文件系统上的文件。虽然用意良好,但该规则在开发和测试期间经常让开发人员感到沮丧。

解决方案是从 Web 服务器而不是从本地文件系统提供 XML 和 XSLT。