0

Phonagap と jquery モバイルを使用して Android アプリケーションを構築しています。

アプリでいくつかの 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 に答える