Phonegap下载mp3文件

时间:2012-10-13 14:25:41

标签: android cordova download

我正在使用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);
    }
);



}

我做错了什么..?

1 个答案:

答案 0 :(得分:0)

似乎没有设置remoteFile。