下载更新APP时,安卓真机运行会报错(Uncaught TypeError: Cannot read property 'start' of null)
plus.downloader.createDownload(andriodUrl, {filename:'_doc/update/'}, function(download,status){
console.log(status);
if (status == 200) {
console.log('下载更新成功:' + d.filename);
installWgt(d.filename); //安装wgt包
} else {
console.log('下载更新失败!');
plus.nativeUI.alert('下载更新失败');
}
plus.nativeUI.closeWaiting();
}).start();
报的是最后start()的错、 有大神知道问题么出在哪儿么?
1 个回复
1***@qq.com - 遇事不决,可问春风
我也遇到这个问题,我的原因是下载路径为undefind,获取正确路径后就正常了