Not allowed to load local resource: file:///E:/A-project/ldmall-front-vue/src/static/staticimg/common/ico/favicon.ico
时间: 2023-09-29 13:11:36 浏览: 269
This error message typically appears in a web browser console when a website attempts to load a resource (in this case, a favicon) from the user's local file system, rather than from a web server.
The "file://" protocol at the beginning of the URL indicates that the browser is attempting to access a file on the user's computer, which is not allowed for security reasons.
To fix this error, the website should be updated to reference the favicon from a web server using a relative or absolute path, rather than a file path. This will ensure that the resource is loaded from the server rather than the local file system.
相关问题
Not allowed to load local resource: file:///C://Users/LOSER/Desktop/program/vue/vue-project/src/assets/emoji_huaji.png
这个错误提示"Not allowed to load local resource"是由于浏览器的安全策略导致的。浏览器默认不允许通过file协议加载本地文件资源,以防止恶意脚本访问用户的本地文件。因此,你需要通过一些方法来解决这个问题。
一种解决方法是使用一个本地Web服务器来提供文件资源。你可以使用Web Server for Chrome插件来搭建一个本地Web服务器,并将你的文件放在服务器的目录下。然后,通过服务器的URL来访问文件,而不是直接使用file协议的本地路径。你可以在Chrome浏览器中下载并安装Web Server for Chrome插件,然后配置服务器并选择要访问的文件。这样,你就可以通过服务器的URL来加载文件了。[2]
另一种解决方法是将文件放在项目的静态资源目录下,然后通过相对路径来引用文件。在你的Spring Boot项目中,你可以在MyWebConfig类的addResourceHandlers方法中配置静态资源的映射路径。将文件放在静态资源目录下后,你可以使用相对路径来引用文件,而不是使用file协议的本地路径。[1]
总结起来,你可以通过搭建本地Web服务器或者将文件放在项目的静态资源目录下来解决"Not allowed to load local resource"的问题。这样,你就可以通过服务器的URL或者相对路径来加载文件了。
Not allowed to load local resource: file:///F:/ERP/ERP/src/main/resources/static/imgss/XM2307-0032-0000/lang0.png
这个错误是由于浏览器的全策略导致的,浏览器不允许直接加载本地文件资源。在前端中,无法直接通过文件路径(`file:///F:/ERP/ERP/src/main/resources/static/imgss/XM2307-0032-0000/lang0.png`)来加载图片。
要在前端中加载图片,你需要将图片放置在公共的静态资源目录中,例如在前端项目的`public`或`assets`目录下。然后,通过相对路径或URL来引用图片。
假设你将图片放置在前端项目的`public`目录下的`img`文件夹中,可以按照以下方式引用图片:
```html
<img src="/img/XM2307-0032-0000/lang0.png" alt="Image">
```
注意,前面的斜杠(`/`)表示相对于项目根目录的路径。
在这种情况下,你可以在后端将文件保存到前端项目的静态资源目录中,然后将文件路径保存到数据库中。前端可以通过获取数据库中保存的文件路径来加载图片。
另外,确保你的后端服务器正确配置了静态资源的访问,以便能够正确地提供静态资源文件。具体的配置方式取决于你使用的后端框架和服务器。
阅读全文