尝试使用ajax读取html页面中的本地文本文件



尝试使用此代码从本地文本文件读取数据。但我不知道为什么这不起作用。有人能帮我解决这个问题吗。我可以在stackoverflow中的大多数答案中看到,他们说这是有效的,但这对我不起作用。我必须为此安装任何东西吗?

<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
 {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
 }
else
{// code for IE6, IE5
 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
 if (xmlhttp.readyState==4 && xmlhttp.status==200)
  {
    document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
  }
}
xmlhttp.open("GET","sample.txt",true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>
</body>
</html>

问题是XMLHttpRequest不会从本地文件系统读取文件(否则恶意网站可能会读取您桌面上的文件!)。以下是一些解决方案:

  1. 127.0.0.1上安装服务器。对于快速而肮脏的解决方案,可以使用Python的SimpleHTTPServer或Node.js的http-server包。对于生产,请使用Nginx或Apache
  2. 将您的文件放在web主机上,例如Github Pages

您只能在服务器端读取本地文件,而无需用户交互。如果你想读取客户端文件,你必须使用一个html交互元素,比如:

<input type="file" id="openselect" /> 

否则,如果你的文件在服务器端,你可以使用类似的东西:

function getdatafromfile(filename)  {
// Read annotation file. Example : %timeinstant t %value n
// Return an array of string
var arraydata
$.ajax({
      type: "GET",
      url: filename,
      dataType: "text",
      success: function(csv) {arraydata = $.csv.toArrays(csv,{separator:'t'}); }
      });
return arraydata;}

相关内容

  • 没有找到相关文章

最新更新