小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小米9cc型号的,小程序里面的文档打不开,报错如标记处,手机中没有下载qq浏览器,手机里面也有wps软件
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
麻烦提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
麻烦提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
// 不传,直接使用默认url
let url = 'https://joa.ncfdc.com.cn:7456/oss/20200817/2020081714194739348.pdf'
wx.showLoading({
title: '加载中...',
});
console.log(url)
// 替换前缀 http://,改成https://
url = url.replace(/^http:/, 'https:')
// 判断文件类型
let ext = url.substr(url.lastIndexOf(".")).replace('.', '');
let fileTypeList = ['doc', 'docx', 'xls', 'xlsx', 'ppt', 'pptx', 'pdf']
let photoList = ['png', 'jpg', 'jpeg', 'gif']
let isPhoto = photoList.includes(ext)
console.log(isPhoto)
if (!fileTypeList.includes(ext) && !isPhoto) {
wx.hideLoading();
wx.showToast({
title: '错误的文件格式',
icon: 'none'
})
return
};
if(isPhoto) {
console.log(url)
wx.previewImage({
current: url, // 当前显示图片的http链接
urls: [url]
})
return
}
// 预下载文件 执行的代码==============================================================================
wx.downloadFile({
url: url,
success(res) {
console.log('res:', res)
let filePath = res.tempFilePath; // 预下载路径
//打开文件
wx.openDocument({
filePath: filePath,
success(res) {
wx.hideLoading();
}
})
},
fail() {
wx.hideLoading();
}
})
}