使用 uni.downloadFile 和 uni.openDocument 没有效果,
uni.downloadFile({
url: 'https://example.com/somefile.pdf',
success: function (res) {
var filePath = res.tempFilePath;
uni.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功');
}
});
}
});
难道是因为浏览器不支持
6 个回复
不想改Bug
同问,怎么在线预览office文件啊
9***@qq.com - uniapp新手
getpdf() {
const url = 'https://mat.jixue2000.com/ssjf/resource/ssjf/courses/file/20190226/924/4fb7ce0ad8ec4fdeba280a0fef329e36.pdf';
uni.downloadFile({
url: url,
success: function (res) {
var filePath = res.tempFilePath;
uni.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功');
}
});
}
});
},
9***@qq.com
这么写完全就不支持
2020-09-18 11:41
2***@qq.com
h5 都不支持
2021-02-09 10:19
5***@qq.com
回复 9***@qq.com: 你解决了么
2021-07-14 13:19
1***@qq.com - unnn
同问解决了吗
对你的感觉
同问
不老刘
H5不行吧。
3***@qq.com
uni.openDocument 方法H5不支持,可以看官网api