抱歉我的英语不好。我是phonegap的新手,我正在尝试读取文件并显示数据,但我在FileSystem中遇到了问题。 window.requestFileSystem不调用“fail”方法。 我的完整代码是:
$scope.fail=function(){
alert("fallo");
}
$scope.gotFS = function(fileSystem) {
fileSystem.root.getFile('QReminderStyle/tema.txt', 0, gotFileEntry, fail);
}
$scope.gotFileEntry = function(fileEntry) {
fileEntry.file(gotFile, fail);
}
$scope.abrirArchivo=function(){
$ionicPlatform.ready(function() {
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}
)}
$scope.gotFile=function(file){
readAsText(file);
}
$scope.readAsText = function(file) {
var reader = new FileReader();
reader.onloadend = function(e) {
alert("Read as text");
alert(JSON.stringify(e));
};
reader.readAsText(file);
}
我不能做日志,因为我在真实的设备上运行。
感谢您的帮助。