var dtask = plus.downloader.createDownload(url, {filename:'_doc/a.txt'}, function ( d, status ) {
// 下载完成
if ( status == 200 ) {
console.log( "Download success: " + d.filename );
plus.runtime.openFile( d.filename, {top:10,left:10,width:200,height:200}, function(e) {
console.log("无法打开此文件:" + JSON.stringify(e));
mui.toast("无法打开此文件:" + e.emssage);
});
} else {
mui.toast( "不能打开文件 " + status );
}
});
//dtask.addEventListener( "statechanged", onStateChanged, false );
dtask.start();
----------------------------------------------------------
- {"message":"文件不存在","code":-4}
apche
- 发布:2015-10-08 14:45
- 更新:2015-10-09 17:07
- 阅读:3057
ios 使用openFile 提示“文件不存在”,需要特殊的权限吗?
分类:HTML5+
1 个回复
yinlei
路径问题,并且openFile是通过第三方来打开的,在ios这边好像是不太适用,我是通过webview打开的,在webview开启缩放
http://www.html5plus.org/doc/zh_cn/io.html