uniapp使用打开文件时,安卓打开成功,iOS打开失败【原因:打开的文件的文件名是中文】...
({
url: url,
success: function(res) {
var filePath = ;
//打开文件有效值 doc, xls, ppt, pdf, docx, xlsx, pptx
({
filePath: escape(filePath),
success: function(res) {
();
that.downloadFile_onoff = true;
},
fail() {
({
title: '暂不支持此类型',
duration: 2000
});
();
that.downloadFile_onoff = true;
}
});
}
});