微信小程序隐藏返回主页按钮以及预览文件

使用uniapp

隐藏返回首页按钮

1
uni.hideHomeButton()

预览文件
1、调用uni.downloadFile下载文件到临时路径
2、使用uni.openDocument打开临时文件路径进行预览

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
uni.downloadFile({
url: host + "/tjbgapi/tjbg/" + path,
success: (res) => {
uni.openDocument({
filePath: res.tempFilePath,
fail: (e) => {
uni.showToast({
title: "预览失败",
icon: 'none'
})
}
})
},
complete() {
uni.hideLoading()
}
})

注:使用downloadFile方法需要再小程序后台配置下载域名,和request域名配置是分开的


微信小程序隐藏返回主页按钮以及预览文件
https://mengluo.com/2024/08/12/微信小程序隐藏返回主页按钮以及预览文件/
作者
梦落
发布于
2024年8月12日
许可协议