0

我有以下代码:

function wait(){
    $(document).ready(function() {
        //alert("Dentro de ready");
        document.addEventListener("deviceready", init(), true);
    });
}

其中“wait”是从 onload 事件调用的 Javascript 函数。我使用 onload 事件以及 $(document).ready 和 "deviceready" 事件来确保在我开始编码时加载每一件事情。

“init()”方法做了一些事情,然后调用以下方法:

function download_img(imgToDownload){
    var url = remote_url+imgToDownload; // image url
    alert("img url: "+url);     
    try{
    window.requestFileSystem(**LocalFileSystem**.PERSISTENT, 0, 
            function (fs) {
        var imagePath = fs.root.fullPath +"/"+ imgToDownload; // full file path
        var fileTransfer = new FileTransfer();
        fileTransfer.download(url, imagePath, 
            function (entry) {
            alert("OK: " + entry.fullPath); // entry is fileEntry object
            }, 
            function (error) {
                alert("download error source " + error.source);
            alert("download error target " + error.target);
            alert("upload error code" + error.code);
            alert("http_status"+error.http_status);
            }
        );
        }
    );
    }catch(err){
    alert(err.message);
    }
}

我在哪里收到错误消息:“未定义 LocalFileSystem”。

我的 config.xml 是:

<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
    xmlns:gap = "http://phonegap.com/ns/1.0"
    id        = "com.lamakun.mancomunidad"
    version   = "3.0.0">

<name>PhoneGap Build Application</name>

<description>
A simple PhoneGap Build application.
</description>

<author href="https://example.com" email="you@example.com">
Your Name
</author>
<preference name="phonegap-version" value="2.2.0" />


<access origin="http://www.mytests.es" subdomains="true"/>

</widget>

万一我可以添加任何权限,即使我认为现在我拥有所有权限。谁能给我一个线索?

4

2 回答 2

1

它不是:

document.addEventListener("deviceready", init(), true); 

它应该是:

document.addEventListener("deviceready", init, true); 

init 之后的 () 在触发 deviceready 事件之前立即调用该函数。

于 2012-12-12T19:04:25.603 回答
0
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

在 android 清单文件中写入这些行

于 2013-09-16T07:32:54.803 回答