预览文件
wx.downloadFile({
url:'',
success (res) {
console.log(res)
if (res.statusCode === 200) {
wx.openDocument({
filePath: res.tempFilePath,
showMenu: true,
fileType: "xlsx",//文件类型
success: function (res) {
},
fail:function(err){
}
})
}
}
})
wx.openDocument()
预览图片
wx.downloadFile({
url: '', // 图片在线 url
success (res) {
if (res.statusCode === 200) {
wx.previewImage({
current: '', // 当前显示图片的http链接
urls:[res.tempFilePath] // 需要预览的图片http链接列表
})
}
}
})