我像现在一样搜索永恒,但仍然不知道为什么不可能,太容易从javascript的本地路径中读取txt文件...
这是我的代码:
var file = new File(["calendar_data"], "calendar_data.txt", {type: "text/plain",});
var fr = new FileReader();
fr.onload = function(){
console.log(fr.result);
}
fr.readAsText(file);
控制台一直在打印“ calendar_data”或我放在方括号中的任何内容...
这不是一种选择,我要做Xmlhttp请求来读取文件,连接需要很长时间...