在我的.js中,我希望能够为路径提供一些功能,然后能够从.xlsx文件中读取。我已经尝试过FileReader(),但是无法指定要读取的本地路径。有谁知道有任何方法可以做到这一点?感谢。
答案 0 :(得分:1)
MDN page for FileReader Using files from web applications链接到{{3}},其中包含示例。
使用文件输入指定本地路径:
<input type="file" id="input">
然后
var selected_file = document.getElementById('input').files[0];
var reader = new FileReader();
reader.readAsBinaryString(selected_file);
显然,网页无法在用户的系统上指定任意文件来阅读。这将是一个巨大的安全风险。