0

我将此代码添加到我的 config.xml

<feature name="http://api.phonegap.com/1.0/file"/>

我的 html 中有 phonegap.js

<script src="phonegap.js"></script>

这是文件传输的代码

<script>
function foo()
{
var fileTransfer = new FileTransfer();
fileTransfer.download(
    "http://mydomain/music.mp3",
    "file://sdcard/Download/music.mp3",
    function(entry) {
        alert("Sound downloaded!");
    },
    function(error) {
        alert("download error source " + error.source);
        alert("download error target " + error.target);
        alert("upload error code" + error.code);
    });
}   
</script>

<span onclick="foo()">Yüklə</span>

或者<button onclick="foo()">Download</button>

请帮忙。谢谢。我也使用 Phonegap 3.0.0 版本

4

0 回答 0