由于我在调试Android / iO中的应用程序时遇到了麻烦,有人可以告诉我一些简单的测试来检查Cordova File API是否已加载并且有效吗?
类似的东西:
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
if(fileAPI){ // what can I test there ?
alert('File API is OK');
}
}
答案 0 :(得分:1)
尝试申请FileSystem
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fs) {
alert("it works");
}, function (e) {
alert("it doesn't work");
});