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

时间:2013-12-06 03:49:26

标签: ajax

尝试使用此代码从本地文本文件中读取数据。 但我不知道为什么这不起作用。 有人可以帮我解决这个问题。我可以在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>

2 个答案:

答案 0 :(得分:2)

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

  1. 127.0.0.1上安装服务器。对于快速而肮脏的解决方案,您可以使用Python的SimpleHTTPServer或Node.js http-server包。要进行制作,请使用NginxApache
  2. 将您的文件放在网络主机上,例如Github Pages

答案 1 :(得分:0)

您只能在没有用户交互的情况下读取服务器端的本地文件。如果要读取客户端文件,则必须使用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;}