2016-08-25 49 views
0

形成cordova.file.tempDirectory我們要讀取的圖像的名字形成cordova.file.tempDirectory使用我們試圖這樣如何讀取圖像名稱中使用伍,科爾多瓦

$cordovaFile.readAsText(cordova.file.tempDirectory) 
      .then(function (success) { 
       console.log("success2"+success); 
        }, function (error) { 
         console.log("error"+error); 
        }); 
But We got error 


ERROR: Wrong type for parameter "path" of DirectoryEntry.getFile: Expected String, but got Undefined. 
2016-08-25 09:23:28.958 DPOD[3482:38292] Error in Success callbackId: File1548160221 : TypeError: Wrong type for parameter "path" of DirectoryEntry.getFile: Expected String, but got Undefined. 

cordova.file.tempDirectory文件的插件只有10 images.So我們需要10images name.tell我的代碼有什麼問題,請指導我們。

回答

0

$ cordova.readAsText接受兩個參數路徑文件

// READ 
$cordovaFile.readAsText(cordova.file.dataDirectory,$scope.inputs.readFile) 
    .then(function (success) { 
    // success 
    }, function (error) { 
    // error 
    }); 

嘗試將文件讀取爲數組緩衝區。請參閱其他閱讀文件的選項。 ngCordova file plugin

確保添加ngCordova文件和適當的依賴注入。 Installation guide