1、问题描述:
点击文字-打开文件进行预览:
文章来源:https://www.toymoban.com/news/detail-408838.html
2、解决:
使用uni.openDocument
新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx。文章来源地址https://www.toymoban.com/news/detail-408838.html
<view class="formwork" @click="openFile()">
点击查看公司授权书模板展示
</view>
<script>
//打开文件
openFile() {
uni.downloadFile({
url: this.hostUrl + '/static/index/prove.docx', //文件的路径
success: function(res) {
var filePath = res.tempFilePath;
uni.openDocument({
filePath: filePath,
showMenu: true,
success: function(res) {
console.log('打开文档成功');
}
});
}
});
},
</script>
到了这里,关于uniapp 开发小程序——点击预览文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!