赞
踩
uniapp里面我们使用downloadFile
和openDocument
这两个api可以很简单实现对文档类型的文件预览。
const previewFile = (item: any) => { uni.downloadFile({ url: 'https://文件地址.pdf', success: (res: any) => { uni.openDocument( filePath: res.tempFilePath, fileType: 'pdf', fail: (err) => { console.log(err) uni.showToast({ title: '文件预览失败!', icon: 'error', }) }, }) }, fail: (err) => { console.log(err) uni.showToast({ title: '文件预览失败!', icon: 'error', }) }, }) }
我们来看看效果:
看起来是没什么问题,只是我们会发现预览的时候文件标题竟然是一串奇怪的字符。其实这是该文件的临时文件名。因为使用downloadFile
这个api会将文件临时存到本地,并且会返回该文件的临时地址,预览时候显示的标题就是文件的临时名称。很多时候我们需要自己定义文件标题,而不是临时文件名。
downloadFile
的filePath
参数来定义文件名。const previewFile = (item: any) => { uni.downloadFile({ url: item.url, // uni.env.USER_DATA_PATH表示的是临时路径 filePath: `${uni.env.USER_DATA_PATH}/${我是自定义标题}.pdf`, success: (res: any) => { uni.openDocument({ filePath: res.filePath, fileType: 'pdf', fail: (err) => { console.log(err) uni.showToast({ title: '文件预览失败!', icon: 'error', }) }, }) }, fail: (err) => { console.log(err) uni.showToast({ title: '文件预览失败!', icon: 'error', }) }, }) }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。