0
我想知道如何通過url使用enyo和phonegap下載文件?使用enyo下載文件
已經嘗試使用phonegap插件下載,但沒有成功。我試圖使用palmService,但沒有找到如何將其插入到項目中的參考。
我用這個插件: https://github.com/phonegap/phonegap-plugins/tree/master/Android/Downloader
但這個插件沒有工作,我按照步驟來安裝,但我得到的未定義錯誤的下載。
這裏是一個例子:
window.plugins.downloader.downloadFile("http://samplepdf.com/sample.pdf", {overwrite: true},
function(res) {
alert(JSON.stringify(result));
}, function(error) {
alert(error);
}
感謝。