我一直在为Web应用程序中的纯文本文件设置导入脚本。
我的脚本如下:
function dataImport(files) {
confirm("Are you sure you want to import the selected file? This will overwrite any data that is currently saved in the application workspace.");
for (i = 0; i < files.length; i++) {
file = files[i]
console.log(file)
var reader = new FileReader()
ret = []
reader.onload = function(e) {
window.localStorage.setItem("ApplicationData", e.target.result);
}
reader.onerror = function(stuff) {
console.log("error", stuff)
console.log (stuff.getMessage())
}
reader.readAsText(file)
}
}
它基本上是对this question提出的修改。
但是,目前用户可以在技术上尝试导入任何文件。由于它是为纯文本文件设计的,因此如果导入了不同类型的文件,则会出现问题。
我在控制台中注意到浏览器检测到正在导入的文件的内容类型。这是一个例子。
fileName: "ideas.txt"
fileSize: 377
name: "ideas.txt"
size: 377
type: "text/plain"
webkitRelativePath: ""
那么,是否有可能设置一个参数,其中脚本检测到文件的内容类型,如果它不是许多指定的合适内容类型之一,则让脚本拒绝导入它?
提前感谢任何建议。
答案 0 :(得分:14)
if (file.type.match('text/plain')) {
// file type is text/plain
} else {
// file type is not text/plain
}
String.match是一个RegEx,所以如果你想检查一下,如果文件是任何类型的文本,你可以这样做:
if (file.type.match('text.*')) {
// file type starts with text
} else {
// file type does not start with text
}
答案 1 :(得分:11)
可以使用以下代码阅读内容类型:
// Note: File is a file object than can be read by the HTML5 FileReader API
var reader = new FileReader();
reader.onload = function(event) {
var dataURL = event.target.result;
var mimeType = dataURL.split(",")[0].split(":")[1].split(";")[0];
alert(mimeType);
};
reader.readAsDataURL(file);