$(document).ready(function() {
window.plugins.downloader.downloadFile("http://some_path/images/image1.jpg", {overwrite: true},
function(res) {
alert(JSON.stringify(result));
}, function(error) {
alert(error);
}
); });
错误:-未捕获的类型错误:无法读取文件中未定义的属性“下载器”:///android_asset/www/index.html:11
我已经包含了正确的 js 文件,并且以正确的顺序仍然出现此错误...
我什至尝试用cordova替换所有对PhoneGap的调用......仍然给出相同的错误,例如
cordova.addConstructor(function() {
cordova.addPlugin("Downloader", new Downloader());
//window.plugins.Downloader = new Downloader();
//PluginManager.addService("Downloader", "com.phonegap.plugins.downloader.Downloader");
});