我正在尝试访问存储在PC上的文本文件。到目前为止,这是我的代码:
function getFile() {
var rawFile = new XMLHttpRequest();
var x = rawFile.open("GET","file:///C:/This/PC/Desktop/ss.txt",true);
if(rawFile.status === 200 || rawFile.status == 0){
var allText = rawFile.responseText;
alert(allText);
}
}
我使用此链接作为指南:How to read a local text file?
问题是我看不到文件。警报弹出时,它为空白。当我对x进行警报时,x显示为未定义。
非常感谢您的帮助!谢谢!