不允许加载本地资源

不允许加载本地资源

本文介绍了无法打开本地文件 - Chrome:不允许加载本地资源的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

测试浏览器:
版本的Chrome:52.0.2743.116



这是一个简单的javascript,用于从本地打开一个图像文件,如'C: \002.jpg'

  function run(){

var URL =file:/ //C:\002.jpg;

window.open(URL,null);

}
run();

以下是我的示例代码。
p>

请给我任何合适的建议。 解决方案

但是看到很多这样的问题......

我们在教室里使用了很多Chrome,并且使用本地文件是必须的。



我们一直在使用的是Web Server for Chrome。你启动它,选择希望使用的文件夹并转到URL(例如你选择的127.0.0.1:port)。

它是一个简单的服务器,不能使用PHP但对于简单的工作,可能是您的解决方案:




Test browser:Version of Chrome: 52.0.2743.116

It is a simple javascript that is to open an image file from local like 'C:\002.jpg'

function run(){

   var URL = "file:///C:\002.jpg";

   window.open(URL, null);

}
run();

Here is my sample code.https://fiddle.jshell.net/q326vLya/3/

Please give me any suitable suggestions.

解决方案

Know this is kind of old, but see many questions like this...

We use Chrome a lot in the classroom and it is a must to working with local files.

What we have been using is "Web Server for Chrome". You start it up, choose the folder wishing to work with and go to URL (like 127.0.0.1:port you chose)

It is a simple server and cannot use PHP but for simple work, might be your solution:

https://chrome.google.com/webstore/detail/web-server-for-chrome/ofhbbkphhbklhfoeikjpcbhemlocgigb

这篇关于无法打开本地文件 - Chrome:不允许加载本地资源的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 12:53