word、xls、ppt、pdf在线预览实现方式:
1、微信小程序,可以使用微信接口:downloadFile和openDocument
wx.downloadFile({
url: 'http://test.com/testfile.pdf', // 示例 url,实际不存在
success: function (res) {
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
success: function (res) {

文章介绍了三种在线预览文档的方法:1)微信小程序利用downloadFile和openDocument接口;2)使用Pfile服务进行文件预览;3)通过OfficeOnline服务预览Office文档,但PDF需特殊处理。每种方法都有其适用场景和限制。
最低0.47元/天 解锁文章
4452

被折叠的 条评论
为什么被折叠?



