- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了以下代码来使用 HTML5 文件 API 检查上传的文件是否存在。
<input type="file" id="myfile">
<button type="button" onclick="addDoc()">Add Document</button>
<p id="DisplayText"></p>
function addDoc() {
var file=document.getElementById("myFile").files[0]; //for input type=file
var reader=new FileReader();
reader.onload = function(e) {}
reader.readAsText(file);
var error = reader.error;
var texte=reader.result;
document.getElementById("DisplayText").innerText=reader.result; /*<p id="DisplayText>*/
}
addDoc()
之前从文件夹中删除“浏览过的”文档。 .单击按钮后,我仍然可以看到
Filereader.result
不为空,可以显示所有内容。
File.canread()
?
最佳答案
FileReader
load
事件集 .result
异步值。访问 .result
使用 load
或 loadend
事件。
当在 <input type="file">
处选择了文件时Choose File
或 Browse...
UI,在本地文件系统删除文件应该不会影响 File
对象在 FileList
返回者 .files
称呼。见 2.9.2. Transferable objects , 6.7.3 The DataTransfer interface .
4. The Blob Interface and Binary Data
Each
Blob
must have an internal snapshot state, which must be initially set to the state of the underlying storage, if any such underlying storage exists, and must be preserved throughstructured clone
. Further normative definition ofsnapshot state
can be found forFile
s.
2.9.8 Monkey patch for Blob and FileList objects
This monkey patch will be removed in due course. See w3c/FileAPI issue 32.
Blob
objects arecloneable objects
.
Each
Blob
object's [[Clone
]] internal method, given targetRealm and ignoring memory, must run these steps:If this is
closed
, then throw a"DataCloneError"
DOMException
.Return a new instance of this in targetRealm, corresponding to the same underlying data.
FileList
objects are cloneable objects.Each
FileList
object's[[Clone]]
internal method, given targetRealm and memory, must run these steps:
Let output be a new
FileList
object in targetRealm.For each file in this, add ?
[StructuredClone][15](_file, targetRealm, memory_)
to the end of the list ofFile
objects of output.Return output.
<input type="file">
处选择文件,则使用 Chromium元素,其中
FileReader
用于读取文件,在
FileReader
处抛出错误,从
FileReader
生成
progress
事件。
Blob URL
设置为相同的文件对象,
blob:
URL 不会在请求时将只读文件返回给
Blob URL
.
webkitdirectory
设置属性并选择具有只读权限的文件夹
FileList
.length
的
event.target.files
返回
0
;
event.target.files.webkitGetAsEntry()
不叫,
"No file chosen"
呈现在
<input type="file">
shadowDOM
.当文件夹被放置在
<input type="file">
或元素 where
droppable
属性集,目录
.name
和
.path
只读文件夹的目录显示在
drop
event.dataTransfer
.
<textarea>
放置文件或文件夹时元素,其中没有
drop
事件附
beforeunload
调用事件并在 UI 上显示提示
Do you want to leave this site?
Changes you made may not be saved.
<Stay><Leave> // <buttons>
allowdirs
属性设置为
<input type="file">
元素,用户单击的位置
"Choose folder.."
<input>
, 文件夹
.name
和
.path
可以在
.then()
访问父文件夹的链接到
event.target.getFilesAndDirectories()
.递归迭代
Directory
时不返回所选文件夹中包含的文件或文件夹条目;返回一个空字符串。
"Choose file..."
<input>
并且选择了一个没有设置只读权限的文件夹,当点击文件管理器中的文件夹时,会列出该文件夹中的文件。
alert()
通知在 UI 显示时呈现
Could not read the contents of <directory name>
Permission denied
<textarea>
放置文件夹时元素,其中没有
drop
事件已附加,用户文件系统中文件夹的完整路径
file:
协议(protocol)暴露。文件夹中包含的文件的路径也未设置为
.value
;例如。,
"file:///home/user/Documents/Document/"
<textarea>
元素,如果不是
drop
附加事件,用户文件系统中文件的完整路径设置为
.value
的
<textarea>
;那是,
"file:///home/user/Documents/Document/MyFileFullPathDisplayedAtTextAreaValue.txt"
<textarea>
元素,所有完整的文件路径都设置为
.value
的
<textarea>
, 由换行符
\n
划定
"file:///home/user/Documents/Document/MyFileFullPathDisplayedAtTextAreaValue1.txt"
"file:///home/user/Documents/Document/MyFileFullPathDisplayedAtTextAreaValue2.txt"
..
XMLHttpRequest()
为文件路径创建,错误记录在
console
NS_ERROR_DOM_BAD_URI: Access to restricted URI denied
.src
的
<img>
带有
.crossOrigin
的元素设置为
"anonymous"
img
error
事件处理程序被调用
window.open()
在第一个参数中设置完整路径
Error: Access to '"file:///home/user/Documents/Document/MyFileFullPathDisplayedAtTextAreaValue.png"' from script denied
type=file
)
For historical reasons, the
value
IDL attribute prefixes the file name with the string "C:\fakepath\
". Some legacy user agents actually included the full path (which was a security vulnerability). As a result of this, obtaining the file name from thevalue
IDL attribute in a backwards-compatible way is non-trivial.
<input>
element APIs
filename
On getting, it must return the string "C:\fakepath\" followed by the name of the first file in the list of
selected
, if any, or the empty string if the list is empty. On setting, if the new value is the empty string, it must empty the list of
filesselected files
; otherwise, it must throw an "InvalidStateError
"DOMException
.NOTE: This "fakepath" requirement is a sad accident of history. See the example in the File Upload state section for more information.
NOTE: Since
path components
are not permitted in file names in the list ofselected files
, the "\fakepath\
" cannot be mistaken for a path component.
4.10.5.1.18. File Upload state (type=file
)
路径组件
When an
<input>
element’stype
attribute is in theFile Upload
state, the rules in this section apply.The
<input>
elementrepresents
a list ofselected files
, each file consisting of a file name, a file type, and a file body (the contents of the file).File names must not contain
path components
, even in the case that a user has selected an entire directory hierarchy or multiple files with the same name from different directories. Path components, for the purposes of theFile Upload
state, are those parts of file names that are separated by U+005C REVERSE SOLIDUS character () characters.
错误报告 https://bugzilla.mozilla.org/show_bug.cgi?id=1311823
在数据 URI 的 <textarea> 处删除文件
以下评论来自 Neal Deakin在错误报告
I think the steps referred to are:
- Open data:text/html,
- Drag a file from the desktop to the textarea
I can reproduce this on Linux, but not on Windows or Mac.
The hunch above is correct; Linux is including the data as a url and plaintext as well.
在data:
删除文件协议(protocol)data URI
在 Firefox 和 Chrome 、 Chrome
data:text/html,<textarea></textarea>
火狐
文件或文件夹的全路径名设置为.value
的<textarea>
.
Chrome 、 Chrome
在data URI
删除文件只有textarea
Chrome 元素, Chrome 取代了data URI
在地址栏放置放置的文件路径,并在同一选项卡中加载放置的文件,替换data URI
与丢弃的文件的内容。
plnkr http://plnkr.co/edit/ZfAGEAiyLLq8rGXD2ShE?p=preview
html
,javascript
重现上述问题
<!DOCTYPE html>
<html>
<head>
<style>
body {
height: 400px;
}
textarea {
width: 95%;
height: inherit;
}
</style>
<script>
window.onload = function() {
var button = document.querySelector("#myfile + button");
var input = document.getElementById("myfile");
var display = document.getElementById("DisplayText");
var text = null;
function readFullPathToFileOnUserFileSystem(e) {
var path = e.target.value;
console.log(path);
var w = window.open(path, "_blank");
var img = new Image;
img.crossOrigin = "anonymous";
img.onload = function() {
document.body.appendChild(this);
}
img.onerror = function(err) {
console.log("img error", err.message)
}
img.src = path;
var request = new XMLHttpRequest();
request.open("GET", path.trim(), true);
request.onload = function() {
console.log(this.responseText)
}
request.error = function(err) {
console.log(err.message)
}
request.send();
}
display.addEventListener("input", readFullPathToFileOnUserFileSystem);
input.addEventListener("change", addDoc);
input.addEventListener("progress", function(event) {
console.log("progress", event)
});
button.addEventListener("click", handleText)
function addDoc(event) {
var mozResult = [];
function mozReadDirectories(entries, path) {
console.log("dir", entries, path);
return [].reduce.call(entries, function(promise, entry) {
return promise.then(function() {
console.log("entry", entry);
return Promise.resolve(entry.getFilesAndDirectories() || entry)
.then(function(dir) {
console.log("dir getFilesAndDirectories", dir)
return dir
})
})
}, Promise.resolve())
.catch(function(err) {
console.log(err, err.message)
})
.then(function(items) {
console.log("items", items);
var dir = items.filter(function(folder) {
return folder instanceof Directory
});
var files = items.filter(function(file) {
return file instanceof File
});
if (files.length) {
console.log("files:", files, path);
mozResult = mozResult.concat.apply(mozResult, files);
}
if (dir.length) {
console.log(dir, dir[0] instanceof Directory, dir[0]);
return mozReadDirectories(dir, dir[0].path || path);
} else {
if (!dir.length) {
return Promise.resolve(mozResult).then(function(complete) {
return complete
})
}
}
})
.catch(function(err) {
console.log(err)
})
};
console.log("files", event.target.files);
if ("getFilesAndDirectories" in event.target) {
return (event.type === "drop" ? event.dataTransfer : event.target)
.getFilesAndDirectories()
.then(function(dir) {
if (dir[0] instanceof Directory) {
console.log(dir)
return mozReadDirectories(dir, dir[0].path || path)
.then(function(complete) {
console.log("complete:", complete);
event.target.value = null;
});
} else {
if (dir[0] instanceof File && dir[0].size > 0) {
return Promise.resolve(dir)
.then(function(complete) {
console.log("complete:", complete);
})
} else {
if (dir[0].size == 0) {
throw new Error("could not process '" + dir[0].name + "' directory" + " at drop event at firefox, upload folders at 'Choose folder...' input");
}
}
}
}).catch(function(err) {
console.log(err)
})
}
var reader = new FileReader();
reader.onload = function(e) {
text = reader.result;
console.log("FileReader.result", text);
button.removeAttribute("disabled");
}
reader.onerror = function(err) {
console.log(err, err.loaded, err.loaded === 0, file);
button.removeAttribute("disabled");
}
reader.onprogress = function(e) {
console.log(e, e.lengthComputable, e.loaded, e.total);
}
reader.readAsArrayBuffer(file);
}
function handleText() {
// do stuff with `text`: `reader.result` from `addDoc`
display.textContent = text;
button.setAttribute("disabled", "disabled");
// set `text` to `null` if not needed or referenced again
text = null;
}
}
</script>
</head>
<body>
<input type="file" id="myfile" webkitdirectory directory allowdirs>
<button type="button" disabled>Add Document</button>
<br>
<br>
<textarea id="DisplayText"></textarea>
</body>
</html>
plnkr http://plnkr.co/edit/8Ovw3IlYKI8BYsLhzV88?p=preview
您可以使用change
事件附加到#myfile
元素来处理用户的文件选择操作。
替代<textarea>
<p>
的元素显示load
结果的元素事件来自.readAsText()
称呼。
显示.result
的FileReader
在click
在button
元素,设置变量text
至reader.result
内load
FileReader
事件在click
事件在button
套装.textContent
的#DisplayText
引用先前设置的变量的元素reader.result
.
<!DOCTYPE html>
<html>
<style>
body {
height: 400px;
}
textarea {
width:95%;
height: inherit;
}
</style>
<head>
<script>
window.onload = function() {
var button = document.querySelector("#myfile + button");
var input = document.getElementById("myfile");
var display = document.getElementById("DisplayText");
var text = null;
input.addEventListener("change", addDoc);
button.addEventListener("click", handleText)
function addDoc(event) {
var file = this.files[0]
var reader = new FileReader();
reader.onload = function(e) {
text = reader.result;
button.removeAttribute("disabled");
}
reader.onerror = function(err) {
console.log(err, err.loaded
, err.loaded === 0
, file);
button.removeAttribute("disabled");
}
reader.readAsText(event.target.files[0]);
}
function handleText() {
// do stuff with `text`: `reader.result` from `addDoc`
display.textContent = text;
button.setAttribute("disabled", "disabled");
// set `text` to `null` if not needed or referenced again
text = null;
}
}
</script>
</head>
<body>
<input type="file" id="myfile" accept="text/*">
<button type="button" disabled>Add Document</button><br><br>
<textarea id="DisplayText"></textarea>
</body>
</html>
关于javascript - HTML5 File API 中的 FileReader.readAsText 如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40146768/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!