[更新]在Chrome中使用FileReader
我设置了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这个选项是否仍然可用(据我所知是) - 尝试使用开关 --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.
问题似乎是围绕 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