在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
/* 打开文档 * @param fileUrl: 文件地址 * @param filetype: 文件类型 */ openDocument(fileUrl, filetype) { wx.downloadFile({ url: fileUrl, success: res => { const filePath = res.tempFilePath; wx.openDocument({ filePath: filePath, fileType: filetype, success: function (res) { // console.log("打开文档成功") }, fail: function (res) { wx.showToast({title: '打开文档失败', icon: 'none', duration: 2000}) }, }) }, fail: res => { console.log(res); }, }); }
|
请发表评论