使用cordova

时间:2016-08-25 13:54:39

标签: javascript cordova

我发现了很多关于如何阅读位于www文件夹中的简单文件的主题。他们中的大多数都是旧的,或者没有举例说明如何使用它。我尝试使用cordova文件插件

cordova plugin add org.apache.cordova.file

但是我收到了这个错误:

Error: Registry returned 404 for GET on https://registry.npmjs.org/org.apache.cordova.file

我尝试使用XMLhttpRequest解决方案,但在模拟器中我没有任何结果。这是我的代码:

function xmlLoadFile()
{
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.body.innerHTML=xmlhttp.responseText;
    }
}
xmlhttp.open("GET","test.txt",true);
xmlhttp.send();
}

我的index.html上有一个,所以我无法理解为什么我在运行应用程序时仍然有一个空白页。

提前感谢您的回答。

1 个答案:

答案 0 :(得分:1)

应该是

cordova plugin add cordova-plugin-file

请参阅此网址

Example JSFiddle

如果您使用的是ajax,请使用任何其他插件。你可以使用jQuery或类似的插件,否则你会得到很多代码。