0

我正在使用 Phonagap 和 jquery mobile 构建一个 android applikation。

在应用程序中,我需要下载一些 mp3 文件,但它不起作用

这是我的功能:

function downloadFile() {

var fileTransfer = new FileTransfer();
var uri = encodeURI("http://media.domain.com/myfile.mp3");
var filepath = remoteFile.substring(remoteFile.lastIndexOf('/')+1);

fileTransfer.download(
    uri,
    filePath,
    function(entry) {
        console.log("download complete: " + entry.fullPath);
    },
    function(error) {
        console.log("download error source " + error.source);
        console.log("download error target " + error.target);
        console.log("upload error code" + error.code);
    }
);



}

我究竟做错了什么..?

4

1 回答 1

0

remoteFile 似乎没有设置。

于 2012-10-25T03:32:06.813 回答