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) {
console.log('打开文档成功')} }) }})