|
移动端查看附件,到从5.3.4到5.3.6为什么变更插件。
在fileApi.js 中
5.3.4使用的插件 cordova-plugin-file-transfer 代码 是这一段代码
/*this.download(url, fileName,option).done(function(nativeUrl){
self.browse(nativeUrl).done(function(url){
dtd.resolve(url);
}).fail(function(err){
dtd.reject(err);
});
}).fail(function(err){
dtd.reject(err);
});*/
5.3.6使用的插件 ch.ti8m.documenthandler 代码 是这一段代码
url = this._toFullUrl(url);
/*this.download(url, fileName,option).done(function(nativeUrl){
self.browse(nativeUrl).done(function(url){
dtd.resolve(url);
}).fail(function(err){
dtd.reject(err);
});
}).fail(function(err){
dtd.reject(err);
});*/
plugins.toast.showShortBottom("正在载入文件,请稍候。。。。");
handleDocumentWithURL(function(){
alert("url=="+url);
dtd.resolve(url);
},function(err){
dtd.reject(err);
},url);
请问为什么变更插件,在此处是修订了什么bug,还是多了什么其它的功能呢???
|
|