使用Cordova File Plugin读取文件

时间:2017-08-10 08:16:21

标签: javascript android cordova filereader phonegap

我正在使用cordova文件插件 - cordova file plugin

我实际上正在从文本文件中读取文件。以下是我的代码

document.addEventListener("deviceready", function () {  
    window.resolveLocalFileSystemURL(cordova.file.applicationDirectory + "sameple.txt", gotFile, fail);
}, true);

function gotFile(file) {           
    file.file(function (file) {                
        var reader = new FileReader();
        reader.onloadend = function (evt) {          
            console.log(this.result);
        }
        reader.readAsText(file);                
    }, fail());            
}

function fail(e) {
    console.info("FileSystem Error : " + e);
}

所以每当我运行此代码时,我都会收到以下错误

deviceready has not fired after 5 seconds.
Channel not fired: onPluginsReady
Channel not fired: onCordovaReady

Could not get Cordova FileSystem: Error: deviceready has not fired after 5 seconds.
   "Could not get Cordova FileSystem:"
   {
      [functions]: ,
      __proto__: { },
      description: "deviceready has not fired after 5 seconds.",
      message: "deviceready has not fired after 5 seconds.",
      name: "Error"
   }

{"data":"data"}

deviceready error之后我能够获得确切的数据..如何解决此错误?我是否必须等待设备就绪执行完成?

1 个答案:

答案 0 :(得分:5)

可能由于多种原因而发生,请参阅here更多详情。

你应该尝试大多数时间都适用的第一个@bayanAbuawad suggestion

  1. 使用cordova平台添加ios android

  2. 添加平台
  3. 用cordova平台删除它们删除ios android

  4. 再次添加。

  5. 这很奇怪,但它与平台文件夹中的错误android.json和ios.json有关。