[更新]在Chrome中使用FileReader

发布于 2024-11-23 23:12:24 字数 807 浏览 2 评论 0原文

我设置了一个 Apache 服务器,将页面放在服务器上,问题就解决了。 所以我知道这个问题是由chrome中的安全设置引起的。

现在我想知道,是否可以让本地网页访问本地文件?

我将制作一个允许将本地图像拖到其上的页面。 这是我的代码,它在 Chrome 中不起作用

问题是 reader.onload 事件没有触发,而是 onerror 触发了。

那么原因是什么呢?以及如何修复它? 非常感谢。

var oImg=document.getElementById("img1");

oImg.addEventListener('dragover', function(e) {
    e.stopPropagation();
    e.preventDefault();
}, false);

oImg.addEventListener('drop', handleDrop, false);

function handleDrop(e) {
    e.stopPropagation();
    e.preventDefault();

    var thisfile  = e.dataTransfer.files[0],
    reader = new FileReader();

    reader.onload = (function(thisfile){
        return function(e){
            oImg.src = e.target.result;
            }
        }
    })(thisfile);

    reader.readAsDataURL(thisfile);
}

I set up a Apache server, put the page on the server and-problem solved.
So I know this problem is caused by security settings in chrome.

Now I wonder, is it possible to let a local webpage access local files?

I'm going to make a page that allows dragging an local image onto it.
Here's my code, which doesn't work in chrome

The problem is reader.onload event didn't trigger, onerror did instead.

So what's the reason? And how to fix it?
Many thanks.

var oImg=document.getElementById("img1");

oImg.addEventListener('dragover', function(e) {
    e.stopPropagation();
    e.preventDefault();
}, false);

oImg.addEventListener('drop', handleDrop, false);

function handleDrop(e) {
    e.stopPropagation();
    e.preventDefault();

    var thisfile  = e.dataTransfer.files[0],
    reader = new FileReader();

    reader.onload = (function(thisfile){
        return function(e){
            oImg.src = e.target.result;
            }
        }
    })(thisfile);

    reader.readAsDataURL(thisfile);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你对谁都笑 2024-11-30 23:12:24

我不确定这个选项是否仍然可用(据我所知是) - 尝试使用开关 --allow-file-access-from-files 打开 chrome

打开 问题 存在可能与您的问题相关。越多的人关注这个问题,它就越有可能得到解决 - 请参阅评论#1。

I'm uncertain if this option is still available (AFAIK it is) - try opening chrome with the switch --allow-file-access-from-files

An open issue exists that may be relevant to your question. The more people star this issue the more likely it is to get fixed - see comment #1.

明天过后 2024-11-30 23:12:24

问题似乎是围绕 file:// 的安全限制。

这是另一个讨论该错误的堆栈溢出问题。

当我尝试设置 cookie 时出现未捕获错误:SECURITY_ERR:DOM 异常 18

The issue appears to be the security constraints around file://

Here is another stack overflow question that talks about the error.

Uncaught Error: SECURITY_ERR: DOM Exception 18 when I try to set a cookie

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文